MindFusion.Charting Programmer's Guide

RadarStyle Enumeration

See Also
 





Specifies the drawing styles for a radar chart.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public enum RadarStyle

Visual Basic  Copy Code

Public Enumeration RadarStyle

JavaScript  Copy Code

// enum
RadarStyle = {}

 Members

  Member name Description

Arcs

The chart is drawn with arcs that connect the data points.

Lines

The chart is drawn with lines that connect the data points.

Points

The chart is drawn with points that mark the position of each chart value.

 Remarks

The Enumeration represents the different styles of radar charts that can be drawn with arcs, lines or points. The style of a radar chart is specified with the RadarStyle property.  The members of the enumeration allow bitwise combination, for example you can draw lines with points.

The chart graphics is drawn with pens and brushes set with ChartPens and ChartBrushes. When shapes at data points are drawn their type is set with Shapes. The pens and brushes for them are specified with ShapePens and ShapeBrushes.

The type of the radar chart is set with the RadarType property and the RadarType enumeration.
By default the RadarStyle property is set to RadarStyle.Lines.

 See Also