MindFusion.Charting Programmer's Guide

BarChart.InnerLabelsFields Property

See Also
 





Gets or sets the field(s) in a database table/view which values are used as inner bar labels.

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

 Syntax

C#  Copy Code

public string InnerLabelsFields { get; }

Visual Basic  Copy Code

Public ReadOnly Property InnerLabelsFields As String

 Property Value

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

 Remarks

The property enables databing for the labels drawn inside chart bars. If you need to set more than one field, separate the names with commas.

The labels set with the InnerLabelsFields are drawn only if the InnerLabelType is set to LabelType.CustomText.

The InnerLabelsFields property, when populated with data, is the same as the InnerLabels property.

 See Also