Polar Axis

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:

<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> 

Rad Chart View-chart axes polaraxis

In this article