Skip to main content
All docs
V19.1
.NET Framework 4.5.2+

ChartObject.SelectData(Range, ChartDataDirection) Method

Specifies the source data for the chart.

Namespace: DevExpress.Spreadsheet.Charts

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

Declaration

void SelectData(
    Range range,
    ChartDataDirection direction
)

Parameters

Name Type Description
range Range

A continuous cell range that contains chart data.

direction ChartDataDirection

A ChartDataDirection enumeration member that specifies how to retrieve series values: from rows or columns.

Remarks

The SelectData method retrieves data series from the specified range and automatically determines the Series.SeriesName, Series.Arguments and Series.Values for each series. The direction parameter specifies in which direction the series are retrieved.

This example demonstrates how to create a chart and specify its data using the ChartObject.SelectData method.

The data range looks as follows.

SelectDataExample_Range

The direction in which the data are extracted is specified by the parameter passed to the method. If the direction equals the ChartDataDirection.Row value, the following chart is displayed.

SelectDataExample_ChartByRow

If the direction equals the ChartDataDirection.Column value, the chart looks as follows.

SelectDataExample_ChartByColumn

Dim worksheet As Worksheet = workbook.Worksheets("chartTask3")
workbook.Worksheets.ActiveWorksheet = worksheet

' Create a chart and specify its location.
Dim chartRowData As Chart = worksheet.Charts.Add(ChartType.ColumnClustered)
chartRowData.TopLeftCell = worksheet.Cells("D3")
chartRowData.BottomRightCell = worksheet.Cells("I14")

' Select chart data by rows.
chartRowData.SelectData(worksheet("B2:F6"), ChartDataDirection.Row)

' Create a chart and specify its location.
Dim chartColumnData As Chart = worksheet.Charts.Add(ChartType.ColumnClustered)
chartColumnData.TopLeftCell = worksheet.Cells("K3")
chartColumnData.BottomRightCell = worksheet.Cells("N14")

' Select chart data by columns.
chartColumnData.SelectData(worksheet("B2:F6"), ChartDataDirection.Column)

Instead of specifying the ChartDataDirection parameter in the SelectData method, you can use the ChartObject.SwitchRowColumn method to change the way that data rows and columns are plotted.

The following code snippets (auto-collected from DevExpress Examples) contain references to the SelectData(Range, ChartDataDirection) 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