MindFusion.Charting Programmer's Guide

RadarChart.RadarType Property

See Also
 





Gets or sets the type of the radar chart to be drawn.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public RadarType RadarType { get; set; }

Visual Basic  Copy Code

Public Property RadarType As RadarType

 Property Value

One of the RadarType enumeration values.

 Remarks

The property specifies whether the chart is radar or polar and if it is 2D or 3D. When using MindFusion.Charting programmatically, the initial RadarType is specified in the constructor.

The drawing style of the chart - lines, arcs and so on, is specified with RadarStyle.

All charts are drawn with pens and brushes from the ChartPens and ChartBrushes property. The data for the chart is set with Data and, for polar charts, Angles.

Default value for the RadarType property is RadarType.Radar2D.

 See Also