MindFusion.Charting Programmer's Guide

RadarChart.InnerAxisLabelType Property

See Also
 





Gets or sets the label type of the inner axis.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public AxisLabelType InnerAxisLabelType { get; set; }

Visual Basic  Copy Code

Public Property InnerAxisLabelType As AxisLabelType

 Property Value

One of the AxisLabelType Enumeration values.

 Remarks

The property specifies the type of labels drawn at the inner chart axis. If the InnerAxisLabelType is set to AxisLabelType.CustomText, the labels are specified with InnerAxisLabels.

The format of the labels, when numbers, is set with InnerLabelFormat.

Radar / polar charts can also have labels at radar segments and  / or at the crossing points of the inner and outer axes. The type of these labels is set with OuterAxisLabelType. Custom labels are set with OuterLabels and OuterAxisLabels.

Default value for the InnerAxisLabelType property is AxisLabelType.Empty.

 See Also