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

XRPivotGrid.CustomChartDataSourceRows Event

Occurs before the XRPivotGrid control passes its data to a bound XRChart control.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v18.2.dll

Declaration

public event EventHandler<PivotCustomChartDataSourceRowsEventArgs> CustomChartDataSourceRows

Event Data

The CustomChartDataSourceRows event's data class is DevExpress.XtraReports.UI.PivotGrid.PivotCustomChartDataSourceRowsEventArgs.

Remarks

This event allows you customize the XRPivotGrid‘s data before passing it to a XRChart control.

Use the event parameter’s Rows property to access data that will be passed to the chart. This collection contains PivotChartDataSourceRow objects that identify chart data source records. Each record contains data from a specific pivot grid cell and will be represented by a series point in a chart.

To learn more about the functionality provided by this event, see PivotGridControl.CustomChartDataSourceRows.

See Also