ChartCollection.Add(ChartType) Method
Creates a chart of the specified type and adds it to the collection.
Namespace: DevExpress.Spreadsheet.Charts
Assembly: DevExpress.Spreadsheet.v24.1.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
Parameters
Name | Type | Description |
---|---|---|
chartType | ChartType | A ChartType enumeration member specifying the chart type. |
Returns
Type | Description |
---|---|
Chart | A Chart object that is the chart embedded in a worksheet. |
Remarks
This example demonstrates how to create a chart using the ChartCollection.Add method and specify its data using the ChartObject.SelectData method.
The chart looks as follows.
Worksheet worksheet = workbook.Worksheets["chartTask2"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Create a chart and specify its location.
Chart chartRowData = worksheet.Charts.Add(ChartType.ColumnStacked);
chartRowData.TopLeftCell = worksheet.Cells["E3"];
chartRowData.BottomRightCell = worksheet.Cells["J12"];
// Select chart data.
chartRowData.SelectData(worksheet["B3:C8"]);
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the Add(ChartType) method.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.