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

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.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

Chart Add(
    ChartType chartType
)

#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.

SelectDataExample_ChartAuto

View Example

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"]);

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.

See Also