New to Telerik UI for WPFStart a free 30-day trial

Polar Axis

Updated on Aug 6, 2026

In order to create a valid RadPolarChart object users must set its PolarAxis and RadialAxis properties to PolarAxis and NumericRadialAxis objects respectively. The PolarAxis class contains three properties and these are MajorStep, Minimum and Maximum which define the tick step, the minimum value and the maximum value of the axis. NumericRadialAxis does not define any properties specific to it.

Below is an example of RadPolarChart that demonstrates the properties of its polar axis:

XAML
	<telerikChart:RadPolarChart>
	    <telerikChart:RadPolarChart.Grid>
	        <telerikChart:PolarChartGrid/>
	    </telerikChart:RadPolarChart.Grid>
	
	    <telerikChart:RadPolarChart.PolarAxis>
	        <telerikChart:PolarAxis LabelInterval="2"
	                                MajorStep="2"
	                                Maximum="10"/>
	    </telerikChart:RadPolarChart.PolarAxis>
	
	    <telerikChart:RadPolarChart.RadialAxis>
	        <telerikChart:NumericRadialAxis/>
	    </telerikChart:RadPolarChart.RadialAxis>
	</telerikChart:RadPolarChart>

Telerik UI for WPF RadChartView polar chart with a PolarAxis and radial axis

Not finding the help you need?
Contact Support