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

SnapChart.Series Property

Provides access to the chart’s collection of series objects.

Namespace: DevExpress.Snap.Core.API

Assembly: DevExpress.Snap.v19.1.Core.dll

Declaration

SeriesCollection Series { get; }

Property Value

Type Description
SeriesCollection

A SeriesCollection object that specifies the collection of chart series.

Remarks

The Series property provides access to the SeriesCollection collection that stores all series explicitly defined in a chart. Use the collection’s members to add a new series or delete the existing one. Each item in the collection is represented by a Series object and can be accessed using indexer notation.

Note that series created dynamically as a result of binding a chart to data (using the SnapChart.DataSource, SnapChart.SeriesDataMember, SeriesBase.ArgumentDataMember and SeriesBase.ValueDataMembers properties) do not appear in the Series collection. To perform a centralized customization of such series, use the SnapChart.SeriesTemplate property.

See Also