MindFusion.Charting Programmer's Guide

PieChart.LabelSuffix Property

See Also
 





Gets or sets a string suffix for labels inside/outside the pie's pieces.

Namespace: MindFusion.Charting.WebForms
Assembly: MindFusion.Charting.WebForms

 Syntax

C#  Copy Code

public string LabelSuffix { get; set; }

Visual Basic  Copy Code

Public Property LabelSuffix As String

 Property Value

A string value that specifies the postfix drawn behind pie labels.

 Remarks

The property specifies a suffix drawn behind each label inside / outside pie pieces. You can also set a prefix drawn before each label with LabelPrefix

The prefix and suffix are the same for all pie pieces. The type of the inner and outer labels is set with InnerLabelType and OuterLabelType. Custom labels are set with InnerLabels and OuterLabels.

Default value for LabelSuffix property is an empty string.

 See Also