Skip to main content

SeriesCollection Class

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

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v14.2.dll

#Declaration

public class SeriesCollection :
    ChartElementCollection<Series>

#Returned By

The Diagram.Series property returns an instance of SeriesCollection.

#Remarks

A chart's series are stored in the SeriesCollection object, returned by the Diagram.Series property.

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.

See Also