ChartView Interface
Consolidates data series of the same type and contains series customization options.
Namespace: DevExpress.Spreadsheet.Charts
Assembly: DevExpress.Spreadsheet.v24.1.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
Related API Members
The following members return ChartView objects:
Remarks
Each chart has an associated ChartView. This object is created automatically when you create a chart. Chart views are stored in the ChartObject.Views collection.
Note
Excel 2016 charts do not have associated ChartView objects. Use the Series.LayoutOptions property to specify series options for these charts.
A chart view consolidates series of the same ChartType. A Chart may contain several views of compatible types. A chart displays views of compatible types simultaneously.
Compatible types are listed below:
- ChartType.Area
- ChartType.AreaFullStacked
- ChartType.AreaStacked
- ChartType.BarClustered
- ChartType.BarFullStacked
- ChartType.BarStacked
- ChartType.ColumnClustered
- ChartType.ColumnFullStacked
- ChartType.ColumnStacked
- ChartType.Line
- ChartType.LineFullStacked
- ChartType.LineFullStackedMarker
- ChartType.LineMarker
- ChartType.LineStacked
- ChartType.LineStackedMarker
If a series of an incompatible type is added to the chart, chart views are recreated. The resulting chart contains only one view of the most recently added type.
Use the ChartView.Series.Add method to add a series of a particular type. The type of the added series is the same as the type of the view to which it is added (determined by the ChartView.ViewType).
The ChartView properties enable you to specify options that are applied to all series within the view.