Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxPivotGridCrossCell.CreateDrillDownDataSource Method

Creates a custom data source using the data associated with the current cross cell.

#Declaration

Delphi
function CreateDrillDownDataSource: TcxCustomDataSource; virtual;

#Returns

Type
TcxCustomDataSource

#Remarks

Call this method to get a custom data source to drilldown the data associated with the current cross cell. The data source is of the TcxCustomDataSource type which can be displayed within our ExpressQuantumGrid which is a separate product or any other control designed for displaying table data. The data source is populated using the data from the subset of records that are retrieved using the record indexes specified by the Records property.

Note

You should destroy the custom data source before navigating the pivot grid control or modifying the underlying data source.

See the example on how to use the CreateDrillDownDataSource function.

See Also