PivotGridControl.CreateServerModeDrillDownDataSource(Int32, Int32, Int32, List<String>) Method
OBSOLETE
The CreateServerModeDrillDownDataSource method is obsolete now. Use the CreateDrillDownDataSource() method instead.
In server mode, returns a list of records used to calculate a summary value for the specified cell. Allows you to specify the columns and limit the number of records to be returned.
Namespace: DevExpress.Xpf.PivotGrid
Assembly: DevExpress.Xpf.PivotGrid.v24.1.dll
NuGet Package: DevExpress.Wpf.PivotGrid
Declaration
[Obsolete("The CreateServerModeDrillDownDataSource method is obsolete now. Use the CreateDrillDownDataSource method instead.")]
public PivotDrillDownDataSource CreateServerModeDrillDownDataSource(
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. |
rowIndex | Int32 | A zero-based integer which identifies the visible index of the row. |
maxRowCount | Int32 | An integer value that specifies the maximum number of data rows to be returned. -1 to retrieve all rows. |
customColumns | List<String> | A list of columns to be returned. |
Returns
Type | Description |
---|---|
PivotDrillDownDataSource |
See Also