MindFusion.Charting Programmer's Guide

AxesChart.YLabelsFields Property

See Also
 





Gets or sets the column(s) in a database table/view to be used as Y-labels.

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

 Syntax

C#  Copy Code

public string YLabelsFields { get; }

Visual Basic  Copy Code

Public ReadOnly Property YLabelsFields As String

 Property Value

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

 Remarks

The property enables you to bind the data used for drawing custom labels at the Y - axis to columns in a database table/view. If you want to set more than one column, separate the names with commas.

The YLabelsFields property, when populated with data, is the same as the YLabels property. It is used only when YAxisSettings.LabelType is set to CustomText.

 See Also