ChartObject.Series Property
In This Article
Provides access to the collection of Series objects.
Namespace: DevExpress.Spreadsheet.Charts
Assembly: DevExpress.Spreadsheet.v24.2.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
#Declaration
SeriesCollection Series { get; }
#Property Value
Type | Description |
---|---|
Series |
A Series |
#Remarks
The Series property provides access to a collection of all data series of the chart. You can add or delete an individual series (an instance of the Series class) and use indexer notation to access it.
The series are created automatically when the ChartObject.SelectData method is used to provide data for a chart. However, you can add series manually, to specify data in a complex cell range or to use literal data.
Worksheet worksheet = workbook.Worksheets["chartTask3"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Create a chart and specify its location.
Chart chart = worksheet.Charts.Add(ChartType.ColumnClustered);
chart.TopLeftCell = worksheet.Cells["H2"];
chart.BottomRightCell = worksheet.Cells["N14"];
// Add chart series using worksheet ranges as the data sources.
chart.Series.Add(worksheet["D2"], worksheet["B3:B6"], worksheet["D3:D6"]);
chart.Series.Add(worksheet["F2"], worksheet["B3:B6"], worksheet["F3:F6"]);
See Also