MindFusion.Charting Programmer's Guide

PieChart.OuterLabels Property

See Also
 





Specifies the text drawn outside each pie piece.

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

An instance of the .NET IList class.

 Remarks

Use the property to specify the labels, drawn outside each pie piece, when you have set the OuterLabelType property to LabelType.CustomText.

You can assign to OuterLabels the array that holds the labels or add them directly to the OuterLabels property.

Inner labels are specified with the InnerLabelType and InnerLabels properties.

Default value for the OuterLabels property is an empty array.

 See Also