wpf-devexpress-dot-xpf-dot-pivotgrid-752a7db7.md
Represents a list of the records which are used to calculate summaries for individual cells.
Namespace : DevExpress.Xpf.PivotGrid
Assembly : DevExpress.Xpf.PivotGrid.v25.2.dll
NuGet Package : DevExpress.Wpf.PivotGrid
public class PivotDrillDownDataSource :
IBindingList,
IList,
ICollection,
IEnumerable,
IEnumerator,
ITypedList,
IDisposable
Public Class PivotDrillDownDataSource
Implements IBindingList,
IList,
ICollection,
IEnumerable,
IEnumerator,
ITypedList,
IDisposable
The following members return PivotDrillDownDataSource objects:
Show 16 links
A PivotDrillDownDataSource object is returned by the CreateDrillDownDataSource and CreateOlapDrillDownDataSource methods, provided by the PivotGrid control. Any of these methods allow you to obtain a list of the records which are used to calculate summaries for individual cells.
The PivotDrillDownDataSource class implements the IList interface, so the data returned by the CreateDrillDownDataSource method can easily be displayed in a grid control (DXGrid or DataGrid).
The underlying data for a cell can be accessed via the PivotGridControl.CreateDrillDownDataSource and PivotGridControl.CreateOlapDrillDownDataSource methods. In addition, the CreateDrillDownDataSource and CreateOlapDrillDownDataSource methods are accessible when handling the PivotGridControl.CustomCellAppearance, PivotGridControl.CustomValueAppearance, PivotGridControl.CustomCellDisplayText, PivotGridControl.CellDoubleClick, PivotGridControl.FieldValueDisplayText, and PivotGridControl.CustomSummary events. The method is accessible via an event’s parameter.
Individual rows in the PivotDrillDownDataSource are represented by PivotDrillDownDataRow objects.
In OLAP mode, use the CreateOlapDrillDownDataSource method to retrieve the underlying data. See the PivotGridControl.CreateOlapDrillDownDataSource topic, for specifics on using this method.
Object PivotDrillDownDataSource
See Also