Chart / Charts / Axes / Radar Axes
In This Topic

    Radar Axes

    In This Topic

    A radar chart (also known as a spider chart or web chart) is a type of chart that displays multivariate data using a circular layout. On this chart each data point in a series is associated with  is separate dimension, represented by an axis that starts from the center of the chart. By default all axes (dimensions) are evenly spaced around the circle radar circle, but you can modify the radar axis position to custom modified angle if needed.

     Creating a Radar Axis

    You create a radar axis by creating an instance of the NRadarAxis class and adding it to the Axes collection of a Radar Chart:

    C#
    Copy Code
    NRadarAxis radarAxis = new NRadarAxis();
    radardChart.Axes.Add(radarAxis);
    

     

    See Also