New to Kendo UI for Angular? Start a free 30-day trial
Polar
Updated on Dec 12, 2025
Polar Charts are scatter charts, which display two-dimensional data series in polar coordinates.
The following example demonstrates the Angular Polar chart in action.
Change Theme
Theme
Loading ...
Binding to Data
You can bind the Polar chart series to an array through the data property in two formats:
-
Binding to arrays—Use arrays of
[X, Y]pairs.tspublic data: [number, number][] = [ [0, 10], [45, 20], [90, 15] ]; -
Binding to objects—Use an array of objects with custom properties.
tspublic data: Array<{ x: number; y: number }> = [ { x: 0, y: 10 }, { x: 45, y: 20 }, { x: 90, y: 15 } ];When binding to objects, specify which properties contain the data through the following field mappings:
Property Data type Required Description xFieldstringYes* The property name that contains the X value with numberordatevalues (*required when binding to objects).yFieldstringYes* The property name that contains the Y value with numbervalues (*required when binding to objects).xAxisstringNo The name of the X axis to use. yAxisstringNo The name of the Y axis to use.
The following example demonstrates how to bind the Polar chart series to data using object models.
Change Theme
Theme
Loading ...
Support and Learning Resources
- Polar Chart Homepage
- Getting Started with the Kendo UI for Angular Chart
- API Reference of the Charts
- Bubble Charts
- Scatter Charts
- Getting Started with Kendo UI for Angular (Online Guide)
- Getting Started with Kendo UI for Angular (Video Tutorial)
- Video Courses
- Chart Forum
- Before You Start: All Things Angular (Telerik Blog Post)
- Knowledge Base