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

PivotSummaryDataSource(PivotGridData, Int32, Int32) Constructor

Initializes a new instance of the PivotSummaryDataSource class.

Namespace: DevExpress.XtraPivotGrid

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

Declaration

public PivotSummaryDataSource(
    PivotGridData data,
    int columnIndex,
    int rowIndex
)

Parameters

Name Type Description
data DevExpress.XtraPivotGrid.Data.PivotGridData

A DevExpress.XtraPivotGrid.Data.PivotGridData object representing the pivot grid data.

columnIndex Int32

An integer value that specifies the index of the pivot grid column whose data cells should be represented by the summary data source; -1 to include data from all columns to the data source.

rowIndex Int32

An integer value that specifies the index of the pivot grid row whose data cells should be represented by the summary data source; -1 to include data from all rows to the data source.

Remarks

Instances of the PivotSummaryDataSource class are automatically created and initialized. Typically, there is no need to call this constructor directly from your code.

See Also