Diagram.Series Property
In This Article
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 |
---|---|
Series |
A 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