MindFusion.Charting Programmer's Guide

RadarChart.SectionPoints Property

See Also
 





Gets or sets the width and location of radar sections.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public IList SectionPoints { get; set; }

Visual Basic  Copy Code

Public Property SectionPoints As IList

 Property Value

A .NET IList value that holds the section positions. The values should range from 0 to 100.

 Remarks

The property specifies the positions of chart background sections. The sections are circles (polygons) concentric to the outer axis. The outer axis is the chart bounding circumference (polygon).

The positions of the sections are calculated relatively to the length of the chart radius.

The sections are filled with brushes from the SectionBrushes property. When the brushes are less than the count of sections, MindFusion.Charting cycles through them again. The brushes follow the order of setting the section points - brushes for the bigger sections should be added last.

The sections are drawn as polygons when SpiderWeb is set to true.

Alternatively, the chart background can be drawn as differently colored segments. Use SegmentBrushes to specify the brushes for that.

Background is drawn when any of the SectionBrushes or SegmentBrushes is not an empty collection. If both are specified, the background is drawn in sections.

Default value for the SectionPoints property is an empty IList.

 See Also