Skip to main content

ChartControlSettings.Series Property

Provides access to the chart control’s collection of series objects.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public SeriesCollection Series { get; }

Property Value

Type Description
SeriesCollection

A SeriesCollection object that is the collection of all 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