Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

XRChart.BindToData(ViewType, Object, String, String, String[]) Method

In This Article

Binds a chart to data.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v24.2.dll

NuGet Package: DevExpress.Reporting.Core

#Declaration

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

#Parameters

Name Type Description
viewType ViewType

A ViewType enumeration value specifying the view type of the series to be generated.

dataSource Object

A Object that is the data source for a chart. This value is assigned to the XRChart.DataSource property.

seriesDataMember String

A String that is the name of the data field whose values are used to automatically generate and populate series. This value is assigned to the XRChart.SeriesDataMember 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 ChartControl.SeriesTemplate object.

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 WebChartControl.SeriesTemplate object.

See Also