Skip to main content
A newer version of this page is available.
All docs
V19.1
Tag

PivotGridFieldBase.GroupFilterMode Property

Gets the filtering mode used for the field’s owner group.

Namespace: DevExpress.XtraPivotGrid

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

Declaration

[Browsable(false)]
public virtual PivotGroupFilterMode GroupFilterMode { get; }

Property Value

Type Description
PivotGroupFilterMode

A PivotGroupFilterMode enumeration member that specifies the filtering mode used for the field’s owner group.

Available values:

Name Description
List

pivotgrid_GroupFilterMode_FieldFilterDropdown

Tree

pivotgrid_GroupFilterMode_GroupFilterDropdown

Remarks

If the GroupFilterMode property returns PivotGroupFilterMode.Tree, the group filter is used to filter data against the group’s fields.

pivotgrid_GroupFilterMode_GroupFilterDropdown

Otherwise, if the GroupFilterMode property returns PivotGroupFilterMode.List, data is filtered against each of the group’s fields separately.

pivotgrid_GroupFilterMode_FieldFilterDropdown

To specify filtering mode for a group, assign the appropriate value to the PivotGridFieldOptions.GroupFilterMode property of the first field in the group (or to the PivotGridOptionsFilterBase.GroupFilterMode property to do this for all groups).

To learn more, see Group Filtering.

See Also