Skip to main content
A newer version of this page is available. .

PivotGridOptionsOLAP.FilterByUniqueName Property

Gets or sets whether PivotGridControl should take into account OLAP member values or unique names when filtering data in the OLAP mode.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v19.1.Core.dll

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public bool FilterByUniqueName { get; set; }

Property Value

Type Default Description
Boolean **false**

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

Property Paths

You can access this nested property as listed below:

Library Object Type Path to FilterByUniqueName
WinForms Controls PivotGridControl
.OptionsOLAP.FilterByUniqueName
Reporting XRPivotGrid
.OptionsOLAP.FilterByUniqueName
ASP.NET Web Forms Controls ASPxPivotGrid
.OptionsOLAP.FilterByUniqueName
MVCxPivotGrid
.OptionsOLAP.FilterByUniqueName
PivotGridSettings
.OptionsOLAP.FilterByUniqueName

Remarks

By default, PivotGridControl takes into account OLAP member values when filtering data in the 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 FilterByUniqueName property to true to enable the PivotGridControl to use unique names instead of values.

The FilterByUniqueName property is in effect for those fields whose PivotGridFieldOptions.OLAPFilterByUniqueName property is set to DefaultBoolean.Default.

See Also