Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ChartView.Series Property

Provides access to a collection of series for a particular view.

Namespace: DevExpress.Spreadsheet.Charts

Assembly: DevExpress.Spreadsheet.v24.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

SeriesCollection Series { get; }

#Property Value

Type Description
SeriesCollection

A SeriesCollection object containing chart series.

#Remarks

Not all series contained in the Series collection may be displayed. If the ChartView.ViewType is ChartType.Pie, only one series is shown, although the series collection may contain several series.

Note the difference between series collections obtained using the Series and the ChartObject.Series properties. The ChartObject.Series collection may contain series not included in any view. For example, this may happen in a column chart with two series if one of the series changes its type to ChartType.Pie and a new series is added to the chart.

Therefore, when adding a new series, add it to a view of a particular ChartView.ViewType to make sure that it is displayed using that type.

See Also