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

PivotChartDataSourceRowBase Class

Serves as the base for classes that represent rows in the datasource passed to the chart control.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v19.2.Core.dll

Declaration

public class PivotChartDataSourceRowBase

Remarks

When a chart control is bound to a pivot grid, the pivot grid prepares a specific chart datasource and passes it to the chart control.

This datasource is a table with three columns: Argument, Series and Value. Each row corresponds to a particular pivot grid cell and will be represented by a point in the chart. Values contained in a row specify the argument, series and value of this chart’s point.

The PivotChartDataSourceRowBase class descendants represent individual rows in the chart datasource. Use the PivotChartDataSourceRowBase.Argument, PivotChartDataSourceRowBase.Series and PivotChartDataSourceRowBase.Value properties to define values contained in the current row.

See Also