Skip to main content

SeriesCollection Class

Represents a collection that stores individual series within a chart control.

Namespace: DevExpress.UI.Xaml.Charts

Assembly: DevExpress.UI.Xaml.Charts.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public class SeriesCollection :
    CollectionBase<Series>

The following members return SeriesCollection objects:

Remarks

Data series which are defined explicitly are maintained by a chart’s diagram within its ChartBase.Series collection. This collection is represented by the SeriesCollection class. The properties and methods exposed by the SeriesCollection class can be used to perform common collection operations, such as adding new or deleting existing items. Each item of the collection is represented by a Series object. Individual series can be accessed using indexer notation.

Inheritance

Object
Collection<Series>
ObservableCollection<Series>
DevExpress.Data.BaseObservableCollection<Series>
CollectionBase<Series>
SeriesCollection
See Also