Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

ChartObject.GetDataRange() Method

Returns a cell range containing chart data.

Namespace: DevExpress.Spreadsheet.Charts

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

Range GetDataRange()

Returns

Type Description
Range

A Range 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