ChartControlSettings.Series Property
In This Article
Provides access to the chart control’s collection of series objects.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.2.dll
NuGet Package: DevExpress.Web.Mvc5
#Declaration
public SeriesCollection Series { get; }
#Property Value
Type | Description |
---|---|
Series |
A Series |
#Remarks
The Series property provides access to a collection of all series which are defined explicitly within a chart control (either at design time or runtime). 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.
See Also