Skip to content

Latest commit

 

History

History
62 lines (42 loc) · 2.23 KB

File metadata and controls

62 lines (42 loc) · 2.23 KB
title page_title description slug canonicalLink
Polar
Polar Series Type - Chart - Kendo UI for Vue
Basic usage of the Kendo UI Polar Charts in Vue projects.
polar_seriestypes_charts_wrapper

Polar

Polar charts are scatter charts which display two-dimensional data series in polar coordinates.

Basic Usage

The following example demonstrates the Polar chart in action.

{% meta height:460 %} {% embed_file series-types/polar/basic-usage/main.vue preview %} {% embed_file series-types/polar/basic-usage/main.js %} {% endmeta %}

Sub-Types

The Radar charts feature the following sub-types:

Smooth Polar Line Charts

The following example demonstrates how to configure a smooth (spline) radar line style for the Radar chart.

{% meta height:460 %} {% embed_file series-types/polar/smooth/main.vue preview %} {% embed_file series-types/polar/smooth/main.js %} {% endmeta %}

Polar Scatter Charts

The following example demonstrates how to create a Polar scatter chart whose series type is represented on the chart as non-connected data points. You can define a Polar scatter series by setting series-defaults-type="'polarScatter'".

{% meta height:460 %} {% embed_file series-types/polar/scatter/main.vue preview %} {% embed_file series-types/polar/scatter/main.js %} {% endmeta %}

Polar Area Charts

The following example demonstrates how to create a Polar area chart whose series type is represented by data points connected with straight line segments that enclose a filled area together with the chart pole. To define a Polar area chart, set type to "'polarArea'".

{% meta height:460 %} {% embed_file series-types/polar/area/main.vue preview %} {% embed_file series-types/polar/area/main.js %} {% endmeta %}

Suggested Links