DataPointCollection.DataBind(IEnumerable, String, String, String) Method

Definition

Data binds the X-value, Y-value(s) and property values of the data points, such as Tooltip or LabelStyle, to the data source.

public:
 void DataBind(System::Collections::IEnumerable ^ dataSource, System::String ^ xField, System::String ^ yFields, System::String ^ otherFields);
public void DataBind (System.Collections.IEnumerable dataSource, string xField, string yFields, string otherFields);
member this.DataBind : System.Collections.IEnumerable * string * string * string -> unit
Public Sub DataBind (dataSource As IEnumerable, xField As String, yFields As String, otherFields As String)

Parameters

dataSource
IEnumerable

The data source to bind with X-value and Y-value(s).

xField
String

The name of the field for X-values.

yFields
String

A comma separated names of the fields for Y-values.

otherFields
String

Other data point properties with binding rules, in the format: PointProperty=Field[{Format}] [,PointProperty=Field[{Format}]].

For example: "Tooltip=Price{C1},Url=WebSiteName".

Remarks

The data source can be the Ole(SQL)DataReader, DataView, DataSet, DataTable or DataRow.

Applies to