MindFusion.Charting Programmer's Guide

RadarChart.Angles Property

See Also
 





Specifies the angles of data points in polar charts.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public IList Angles { get; set; }

Visual Basic  Copy Code

Public Property Angles As IList

 Property Value

A value of type .NET IList.

 Remarks

This property is used only in polar charts. In polar charts, the position of each data point is specified by the value of the point and an angle. The values are set with Data, the angles - with Angles.

The property contains lists with angles. The values must range from 0 to 360. If an angle is not in this range, it is transformed by deduction or addition of 360 as many times as necessary until it fits the interval.

In radar charts, data points are always positioned at equal angles on the inner axes. In polar charts, points can be distributed unevenly in the circle.

If a member in the Data array has no corresponding angle in the Angles array and Angles is not empty, the data point angle is considered to be 0.

If Angles are not specified and the chart type is Polar2D / Polar3D, the angles are calculated automatically as in radar charts.

Default value for the Angles property is an empty list.

 See Also