MindFusion.Charting Programmer's Guide

RadarChart.AltAxesPens Property

See Also
 





Specifies the collection of pens used for drawing the alternative axes.

Namespace: MindFusion.Charting.WebForms
Assembly: MindFusion.Charting.WebForms

 Syntax

C#  Copy Code

public PenCollection AltAxesPens { get; set; }

Visual Basic  Copy Code

Public Property AltAxesPens As PenCollection

 Property Value

An instance of the MindFusion.Drawing.PenCollection.

 Remarks

The property specifies the pens for drawing the alternative axes. The alternative axes are circumferences, which are concentric to the outer axes (the outlining) of the chart. If SpiderWeb is set to true, the axes are polygons.

The count of the alternative axes depends on the divisions of the inner axis. They are determined by the MinValue, MaxValue and the Span properties. If those are not set, the count is calculates based on the count of data series, added to the Data property.

No alternative axes are drawn if the AltAxesPens collection is empty. None of the alternative axes replace the outer axis, which is always drawn.

 See Also