Skip to main content
A newer version of this page is available. .

ChartObject.MoveToWorksheet(Worksheet) Method

Moves a chart to the specified worksheet.

Namespace: DevExpress.Spreadsheet.Charts

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

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.

Dim worksheet As Worksheet = workbook.Worksheets("chartTask1")

' Create a chart sheet containing a pie chart.
Dim chartSheet As ChartSheet = workbook.ChartSheets.Add(ChartType.Pie, worksheet("B2:C7"))

' Move the chart to the worksheet with chart data.
Dim embeddedChart As Chart = 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