Skip to main content
A newer version of this page is available. .
All docs
V21.2

PivotGridControl.CreateDrillDownDataSourceAsync(Int32, Int32, Int32, List<String>) Method

Returns a list of records used to calculate a summary value for the specified cell asynchronously.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v21.2.dll

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

public Task<PivotDrillDownDataSource> CreateDrillDownDataSourceAsync(
    int columnIndex,
    int rowIndex,
    int maxRowCount,
    List<string> customColumns
)

Parameters

Name Type Description
columnIndex Int32

A zero-based integer which identifies the visible index of the column. Pass -1 as a column index to obtain the column’s Grand Total.

rowIndex Int32

A zero-based integer which identifies the visible index of the row. Pass -1 as a row index to obtain the row’s Grand Total.

maxRowCount Int32

An integer value that specifies the maximum number of data rows to be returned. Pass -1 to retrieve all rows.

customColumns List<String>

A list of columns to be returned.

Returns

Type Description
Task<PivotDrillDownDataSource>

An asynchronous operation that returns PivotDrillDownDataSource as a result.

See Also