MindFusion.Charting Programmer's Guide

PieChart.InnerLabelsField Property

See Also
 





Gets or sets the field in a database table/view used as labels inside pie pieces.

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

 Syntax

C#  Copy Code

public string InnerLabelsField { get; }

Visual Basic  Copy Code

Public ReadOnly Property InnerLabelsField As String

 Property Value

A string. Default value is an empty string ("").

 Remarks

The property enables data used as inner pie labels to be bound to a column in a database table/view. The labels specified with the InnerLabelsField are drawn only if the InnerLabelType property of the chart is set to LabelType.CustomText. The InnerLabelsField property, when populated with data, is the same as the InnerLabels property.

 See Also