MindFusion.Charting Programmer's Guide

RadarChart.InnerAxisPosition Property

See Also
 





Gets or sets the position of the inner axis.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public Position InnerAxisPosition { get; set; }

Visual Basic  Copy Code

Public Property InnerAxisPosition As Position

 Property Value

One of the Position Enumeration values.

 Remarks

The property specifies the position of the primary inner chart axis. Each radar / polar chart can have many inner axes, which look like radiuses, equally distributed in the chart circle (polygon). The count of the inner axes depends on the count of the longest list added to the Data property.

All inner axes are drawn with the InnerAxisPen. Only one of them has labels on it and its position is specified with InnerAxisPosition.

The type of labels drawn at the inner axis is specified with InnerAxisLabelType. Custom labels are set with InnerAxisLabels.

Default value for the InnerAxisPosition property is Position.Bottom.

 See Also