Skip to main content

Diagram.Series Property

Provides access to the diagram's collection of series.

Namespace: DevExpress.Xpf.Charts

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

#Declaration

[XtraSerializableProperty(XtraSerializationVisibility.Collection, true, false, true)]
public SeriesCollection Series { get; }

#Property Value

Type Description
SeriesCollection

A SeriesCollection object that represents the diagram's collection of series.

#Remarks

The Series property provides access to a collection of all series defined explicitly within a diagram (either at design time or run time).

The collection is represented by an instance of the SeriesCollection class, and allows individual series (which are instances of the Series class) to be added, deleted and accessed using indexer notation.

To learn more on series creation, see Create a Series Manually.

See Also