Skip to main content

PivotGridControl.GroupFilterMode Property

Gets or sets the filtering mode of grouped fields.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

public GroupFilterMode GroupFilterMode { get; set; }

Property Value

Type Description
GroupFilterMode

A GroupFilterMode enumeration member that specifies the filtering mode of grouped fields.

Available values:

Name Description
List

pivotgrid_FieldFilterDropdown

Tree

pivotgrid_GroupFilterDropdown

Remarks

If the GroupFilterMode property is set to GroupFilterMode.Tree, the group filter is used for groups.

pivotgrid_GroupFilterDropdown

Otherwise, if the GroupFilterMode property is set to GroupFilterMode.List, the field filter is used. In this instance, the fields are treated by the filter as ungrouped.

pivotgrid_FieldFilterDropdown

Regardless of the currently selected group filter mode, you can customize both group and field filters in code. The customizations of the currently unused filter will take effect after switching the group filter mode.

See Also