MindFusion.Charting Programmer's Guide

RadarChart.OuterAxisLabelType Property

See Also
 





Specifies the type of labels drawn at the outer axis.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public AxisLabelType OuterAxisLabelType { get; set; }

Visual Basic  Copy Code

Public Property OuterAxisLabelType As AxisLabelType

 Property Value

One of the AxisLabelType Enumeration values.

 Remarks

The property specifies the type of labels drawn at the outer chart axis. When it is set to AxisLabelType.CustomText, the labels are specified with OuterAxisLabels.

In radar / polar charts, the outer axis is the bounding circumference (polygon) for the radar / polar. The outer axis is just one, the circles (polygons) drawn concentric to it are called alternative axes.

Labels can also be drawn in the middle of the outer axis segments. They are only custom-set and are specified with OuterLabels.

AxisLabelType.ChartData is not applied for specifying the OuterAxisLabelType property. AxisLabelType.AutoScale is used only in RadarChart objects.

The labels are drawn with LabelBrush.

Default value for the OuterAxisLabelType property is AxisLabelType.Empty.

 See Also