MindFusion.Charting Programmer's Guide

RadarChart.OuterLabels Property

See Also
 





Specifies the custom labels drawn at the chart segments of the outer axis.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public IList OuterLabels { get; set; }

Visual Basic  Copy Code

Public Property OuterLabels As IList

 Property Value

A .NET IList property that holds the labels.

 Remarks

Use the property to specify the labels, drawn at the outer segments of the radar charts. You can assign to OuterLabels the array that holds the labels or add them directly to the OuterLabels property.

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 at the crossing points of the outer axis and the inner axes. Their type is set with OuterAxisLabelType. Labels drawn at the inner axis are specified with InnerAXisLabelType and InnerAxisLabels properties.

Default value for the OuterLabels property is an empty list.

 See Also