Specifies the different types of radar charts that can be drawn. Namespace: MindFusion.Charting
|
C#
![]() |
---|
public enum RadarType |
Visual Basic
![]() |
---|
Public Enumeration RadarType |
JavaScript
![]() |
---|
// enum |
Member name | Description | |
---|---|---|
![]() |
Polar2D |
2D polar chart. The position of each data point is specified by an angle and a numerical value. |
![]() |
Polar3D |
3D polar chart. Each data point is specified by an angle and a numerical value. |
![]() |
Radar2D |
A 2D radar chart. The position of each data point is specified by a numerical value. |
![]() |
Radar3D |
A 3D radar chart. The position of each data point is specified by a numerical value. |
The enumeration represents the different types of radar charts that can be drawn. The type of a radar chart is specified with the RadarType property. The drawing style of the chart is specified with RadarStyle.
Data for the chart is set with Data. The angles of data points in polar charts are specified with Angles.
MindFusion.Charting parses all data automatically. All data types are allowed - integers, doubles and so on.
3D charts are drawn by changing the light angle for the chart background. The color of the background is set with Background3D property. No background brushes are used.
The drawing style of a radar / polar chart is specified by the RadarStyle property.
Default value for the RadarType property is RadarType.Radar2D.