MindFusion.Charting Programmer's Guide

RadarChart.RadarStyle Property

See Also
 





Gets or sets the style of the radar / polar chart to be drawn.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public RadarStyle RadarStyle { get; set; }

Visual Basic  Copy Code

Public Property RadarStyle As RadarStyle

 Property Value

One of the RadarStyle enumeration values.

 Remarks

RadarStyle property specifies the drawing style for both radar and polar charts. The RadarStyle enumeration members allow bitwise combination for more styles, for example, you can draw radar lines with shapes at data points.

The type of the chart is set with RadarType.

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 RadarStyle property is RadarStyle.Lines.

 See Also