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

FieldFilterType Enum

Contains the values that specify a field’s filter type in the PivotGrid control.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Package: DevExpress.Wpf.PivotGrid

#Declaration

public enum FieldFilterType

#Members

Name Description
Excluded

Specifies that the DXPivotGrid control should not display the filter values. All the other values will be displayed.

Included

Specifies that the DXPivotGrid control should display only the filter values.

#Remarks

Field values in the PivotGrid control can be filtered. The FieldFilterValues.FilterType property of the FieldFilterType class specifies a field’s filter type.

A field’s PivotGridField.FilterValues collection contains filter values. If the FieldFilterValues.FilterType property is set to FieldFilterType.Included, only the records which contain values from the Values array of a specific field are displayed by the PivotGrid control. Otherwise, if the FieldFilterValues.FilterType property is set to the FieldFilterType.Excluded value, only the records which don’t contain values from the Values array of a specific field are displayed.

See Also