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.GetDataRange() Method

Returns a cell range containing chart data.

Namespace: DevExpress.Spreadsheet.Charts

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

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

CellRange GetDataRange()

#Returns

Type Description
CellRange

A CellRange object that is a contiguous or noncontiguous (union) range of cells containing chart data.

#Remarks

The GetDataRange method returns null (Nothing in Visual Basic) in the following cases:

  • If a chart does not use data from a cell range (e.g., the chart is created using an array of literals);
  • If a chart obtains data from cell ranges located on different worksheets.

To obtain data used to plot a particular series on a chart, use the Series.Arguments and Series.Values properties.

See Also