Skip to main content
Tag

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

PivotGridField.OlapFilterByUniqueName Property

Gets or sets whether PivotGridControl should take into account OLAP member values or unique names when filtering data in an OLAP mode. This is a dependency property.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Package: DevExpress.Wpf.PivotGrid

#Declaration

public bool? OlapFilterByUniqueName { get; set; }

#Property Value

Type Description
Nullable<Boolean>

true to take into account unique names when filtering data in the OLAP mode; false to take into account values instead.

#Remarks

By default, PivotGridControl takes into account OLAP member values when filtering data in an OLAP mode. Specific cube dimensions may contain several OLAP members with the same value. As a result, the pivot grid cannot distinguish between such members and treats them as one, which may lead to incorrect filtering. In this instance, set the OlapFilterByUniqueName property to true to enable the PivotGridControl to use unique names instead of values.

If the OlapFilterByUniqueName property is set to null (Nothing in Visual Basic), the control’s PivotGridControl.OlapFilterByUniqueName property is in effect.

See Also