Charting for WPF Programmer's Guide

PieSeries.Label Property

See Also
 


Gets or sets custom labels for pie pieces or pie legend.

Namespace: MindFusion.Charting.Wpf
Assembly: Charting

 Syntax

C#  Copy Code

public IList Label { get; set; }

Visual Basic  Copy Code

Public Property Label As IList

 Property Value

A list with objets that are drawn as custom labels. Default value is an empty list.

 Remarks

The labels can be of any type. They are converted to strings using .NET ToString() method. The labels are drawn when the InnerLabelType or OuterLabelType property is set to LabelType.CustomText.

If you are using data binding the property for setting custom labels from a data source is LabelPath.

 See Also