MindFusion.Charting Programmer's Guide

LineChart.YDataFields Property

See Also
 





Gets or sets the column in a database table/view to be used as Y-data.

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

 Syntax

C#  Copy Code

public string YDataFields { get; }

Visual Basic  Copy Code

Public ReadOnly Property YDataFields As String

 Property Value

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

 Remarks

The property enables you to bind the data used for calculating the Y-coordinates of line chart points to column(s) in a database table/field. If you want to add more than one column as data, you should separate the names with commas.

The YDataFields property, when populated with data, is the same as the YData property. 

 See Also