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

ChartObject.MoveToWorksheet(Worksheet) Method

Moves a chart to the specified worksheet.

Namespace: DevExpress.Spreadsheet.Charts

Assembly: DevExpress.Spreadsheet.v24.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

Chart MoveToWorksheet(
    Worksheet worksheet
)

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

View Example

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;

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.

See Also