Skip to main content
A newer version of this page is available. .

Series.BindToData(Object, String, String[]) Method

Binds a series to data.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v18.2.dll

Declaration

public void BindToData(
    object dataSource,
    string argumentDataMember,
    params string[] valueDataMembers
)

Parameters

Name Type Description
dataSource Object

A Object that is the datasource for a series. This value is assigned to the Series.DataSource property.

argumentDataMember String

A String that is the name of the data field that contains arguments for series points. This value is assigned to the SeriesBase.ArgumentDataMember property of a series.

valueDataMembers String[]

An array of String values that are the names of data fields that contain information on data values of series points. These values are assigned to the SeriesBase.ValueDataMembers property of a series.

See Also