MindFusion.Charting Programmer's Guide

RadarChart.Data Property

See Also
 





Gets or sets the data for the chart series.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public IList Data { get; set; }

Visual Basic  Copy Code

Public Property Data As IList

 Property Value

A value of type .NET IList.

 Remarks

The property holds lists with data for each radar graphics. Data can be numbers or in any other format that can be parsed to numbers.

Data lists might vary in count. The count of the longest series determines the count of the inner axes. They are drawn as equally distributed radiuses.

The position of data points is calculated using the inner axis scale. The scale starts with MinValue ends with MaxValue and the length of the intervals depends on Span. If those properties are not set, the smallest and biggest Data numbers are taken as minimum and maximum scale values. The span is calculated automatically based on the count of lists in Data.

If the chart is polar, the position of the data points depends also on the value of the angle that corresponds to that point. The angles are set with Angles.

Default value for the Data property is an empty list.

 See Also