Chart.DataBindTable Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Automatically creates and binds series data to the specified data table.
Overloads
DataBindTable(IEnumerable) |
Automatically creates and binds series data to the specified data table. |
DataBindTable(IEnumerable, String) |
Automatically creates and binds series data to the specified data table, and optionally populates X-values. |
DataBindTable(IEnumerable)
Automatically creates and binds series data to the specified data table.
public:
void DataBindTable(System::Collections::IEnumerable ^ dataSource);
public void DataBindTable (System.Collections.IEnumerable dataSource);
member this.DataBindTable : System.Collections.IEnumerable -> unit
Public Sub DataBindTable (dataSource As IEnumerable)
Parameters
- dataSource
- IEnumerable
The data source that is data bound by a chart, which can be any IEnumerable object.
Remarks
Each column of the table becomes a Y-value for a series, with one series per column.
Applies to
DataBindTable(IEnumerable, String)
Automatically creates and binds series data to the specified data table, and optionally populates X-values.
public:
void DataBindTable(System::Collections::IEnumerable ^ dataSource, System::String ^ xField);
public void DataBindTable (System.Collections.IEnumerable dataSource, string xField);
member this.DataBindTable : System.Collections.IEnumerable * string -> unit
Public Sub DataBindTable (dataSource As IEnumerable, xField As String)
Parameters
- dataSource
- IEnumerable
The data source that is data bound by a chart, which can be any IEnumerable object.
- xField
- String
The name of the field used for the series X-values.
Remarks
Each column of the table becomes a Y-value for a series, with one series per column.
The series' X-value field can also be provided.