Skip to main content

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

PivotGridControl.GroupFilterMode Property

Gets or sets the filtering mode of grouped fields.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v24.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