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

Specify Series Data Members

  • 2 minutes to read

This document describes how to specify a data source for a manually created series, and populate series points automatically based on the data source table. This is an alternative approach to manually adding points to a series.

After you manually create a series, it is not displayed unless it has points. Thus, you can force series to obtain their data from your project’s data source.

To add a project data source, click the web chart’s smart tag. In its actions list, expand the Choose Data Source drop-down list and select New data source….

ChartNewDataSource

Next, proceed to steps 6-11 of Lesson 3 - Bind Chart Series to Data. After you have finished connecting to the data, make sure that the appropriate values are assigned to the web chart’s ASPxDataWebControlBase.DataSource property.

Since each series point is defined by both an argument and its corresponding value (and some series view types require multiple values for each argument), you should specify an appropriate argument data member and value data member(s).

To quickly access these properties, click the web chart’s smart tag, and choose Series… in its actions list.

ClickSeriesLink

Then, in the invoked Series Collection Editor, select a series and switch to the Properties tab.

SpecifySeriesPointMembers

In this tab, specify the SeriesBase.ArgumentDataMember and SeriesBase.ValueDataMembers properties. Note that if a series uses the web chart control’s data source, it is not necessary to define the ASPxDataWebControlBase.DataSource property. It should only be specified when series use separate data sources different from that of the chart control.

Now, points will be created and populated automatically, as long as there are records (rows) in the specified data columns.

Note that at design time, the chart displays mock points for series, to use PC resources more efficiently. To force the loading of real data, click Populate in the chart’s actions list.

ClickPopulateChart

To learn about the most important series options, refer to Customize a Series.

See Also