MindFusion.Charting Programmer's Guide

RadarChart.OuterAxisLabels Property

See Also
 





Gets or sets custom labels drawn at the outer axis.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public IList OuterAxisLabels { get; set; }

Visual Basic  Copy Code

Public Property OuterAxisLabels As IList

 Property Value

A .NET IList value that holds the labels.

 Remarks

The property specifies the custom labels drawn at the outer axis.

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.

OuterAxisLabels specifies the labels drawn at the crossing points of the outer axis with the inner axes when the OuterAxisLabelType is set to AxisLabelType.CustomText. In polar carts the axis labels can also be the angles grades. Labels can also be drawn in the middle of the outer axis segments. They are only custom-set and are specified with OuterLabels.

The labels are drawn with LabelBrush.

Default value for the OuterAxisLabels property is an empty list.

 See Also