FieldFilterValues.FilterType Property
Gets or sets the field’s filter type.
Namespace: DevExpress.Xpf.PivotGrid
Assembly: DevExpress.Xpf.PivotGrid.v24.2.dll
NuGet Package: DevExpress.Wpf.PivotGrid
#Declaration
[DefaultValue(FieldFilterType.Excluded)]
public FieldFilterType FilterType { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Field |
Excluded | A Field |
Available values:
Name | Description |
---|---|
Excluded | Specifies that the DXPivot |
Included | Specifies that the DXPivot |
#Remarks
The FilterType property specifies whether only the records that contain values from the PivotGridFieldFilterValues.Values array of a specific field are displayed in a pivot grid.
If the FilterType property is set to the FieldFilterType.Included value, only the records which contain values from the PivotGridFieldFilterValues.Values array of a specific field are displayed by a pivot grid. Otherwise, if the FilterType property is set to the FieldFilterType.Excluded value, only records that don’t contain values from the PivotGridFieldFilterValues.Values array of a specific field are displayed.
Note
The Filter
#Example
This example shows how to apply a filter to a field.
The first filter selects records which contain UK in the fieldCountry field, the second filter selects four categories in the fieldCategoryName field: Beverages, Condiments, Seafood, and Produce.
fieldCountry.SetFilterValues(new string[] { "UK" }, FieldFilterType.Included, true);
fieldCategoryName.SetFilterValues(new string[] { "Beverages", "Condiments", "Seafood", "Produce" }, FieldFilterType.Included, true);
#Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the FilterType property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.