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

BootstrapChartBase.SeriesCollection Property

Provides access to options for Chart widget series.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v19.2.dll

Declaration

[PersistenceMode(PersistenceMode.InnerProperty)]
public BootstrapChartSeriesCollectionBase SeriesCollection { get; }

Property Value

Type Description
BootstrapChartSeriesCollectionBase

An object of the BootstrapChartSeriesCollectionBase class.

Remarks

A series represents a grouping of related data points. The most important characteristic of a series is its type, which determines a particular visual representation of data. You can find more details on each series type in the corresponding topics in the Chart Series help section.

To define a single series, use the BootstrapChartSeries class. In the series’ object, specify the series type, data source fields, the appearance of the series points and other options.

To show several series, specify series as an array of objects defining series. If you need to set similar values to properties of several series, use the BootstrapChartCommonSeries class. It exposes the properties that can be specified for all series at once and for all series of a particular type at once. Note that the values specified for a series individually (in the BootstrapChartSeries class) override the values that are specified for all series (in the BootstrapChartCommonSeries class).

Note

This option is required. If you do not need to specify any of the options within the series collection (e.g., when you have specified them within the BootstrapChartCommonSeries class), assign at least an empty object to the SeriesCollection property.

See Also