ChartObject.MoveToWorksheet(Worksheet) Method
Moves a chart to the specified worksheet.
Namespace: DevExpress.Spreadsheet.Charts
Assembly: DevExpress.Spreadsheet.v24.1.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
Parameters
Name | Type | Description |
---|---|---|
worksheet | Worksheet | A Worksheet object that specifies a worksheet in the current workbook where the chart will be placed. |
Returns
Type | Description |
---|---|
Chart | A Chart object that specifies the embedded chart. |
Remarks
The following example demonstrates how to use the MoveToWorksheet method to move a chart from a separate chart sheet to a worksheet containing the source data.
Worksheet worksheet = workbook.Worksheets["chartTask1"];
// Create a chart sheet containing a pie chart.
ChartSheet chartSheet = workbook.ChartSheets.Add(ChartType.Pie, worksheet["B2:C7"]);
// Move the chart to the worksheet with chart data.
Chart embeddedChart = chartSheet.Chart.MoveToWorksheet(worksheet);
// Adjust the chart location.
embeddedChart.TopLeftCell = worksheet.Cells["E2"];
embeddedChart.BottomRightCell = worksheet.Cells["K15"];
workbook.Worksheets.ActiveWorksheet = worksheet;
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the MoveToWorksheet(Worksheet) 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.