Skip to main content

PivotCellBaseEventArgs.CreateOlapDrillDownDataSource(List<String>) Method

OBSOLETE

The CreateOLAPDrillDownDataSource method is obsolete now. Use the CreateDrillDownDataSource() method instead.

In OLAP mode, returns a list of records used to calculate a summary value for the current cell. Allows you to specify the columns to be returned.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

[Obsolete("The CreateOLAPDrillDownDataSource method is obsolete now. Use the CreateDrillDownDataSource method instead.")]
public PivotDrillDownDataSource CreateOlapDrillDownDataSource(
    List<string> customColumns
)

Parameters

Name Type Description
customColumns List<String>

A list of columns to be returned.

Returns

Type Description
PivotDrillDownDataSource

A PivotDrillDownDataSource object that contains the underlying data.

Remarks

Note

For MS SQL Server Analysis Services 2000, the customColumns parameter is ignored. In this instance, the CreateOlapDrillDownDataSource method returns the granularity attributes.

Note

A note for MS SQL Server Analysis Services 2005 and 2008. If the customColumns list is null or empty, the CreateOlapDrillDownDataSource method returns the columns corresponding to the current column, row and data PivotGrid fields. In addition, it returns filter fields if a filter is applied to them. Otherwise, it returns the columns specified by the customColumns list.

Note

If a filter is applied to a field, then that filter is taken into account if the corresponding drill-down column was returned from the server by the CreateOlapDrillDownDataSource method.

Note

The CreateOlapDrillDownDataSource method is not supported for cells corresponding to calculated measures.

Note

If multiple filter items are selected in a Filter Field, the drill-down data source cannot be created due to an MS SQL Server Analysis Services limitation. In this instance, the CreateOlapDrillDownDataSource method throws an exception.

See Also