MindFusion.Charting Programmer's Guide

PieChart.InnerLabels Property

See Also
 





Specifies the text drawn inside each pie piece.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public IList InnerLabels { get; set; }

Visual Basic  Copy Code

Public Property InnerLabels As IList

 Property Value

An instance of the .NET IList class, which is a single array with the labels.

 Remarks

Use the property to specify the text drawn inside each pie piece, when you have set the InnerLabelType member to LabelType.CustomText.

The InnerLabelFormat property specifies the number format for numerical inner labels.

OuterLabels are set with the OuterLabels property and the OuterLabelType property.

Default value for the InnerLabels property is an empty array.

 See Also