Skip to main content
A newer version of this page is available. .

PivotFieldFilterChangingEventArgs.FilterType Property

Gets the current filter type.

Namespace: DevExpress.Web.ASPxPivotGrid

Assembly: DevExpress.Web.ASPxPivotGrid.v19.1.dll

Declaration

public PivotFilterType FilterType { get; }

Property Value

Type Description
PivotFilterType

A PivotFilterType enumeration member that specifies the filter type currently set for the field filter.

Available values:

Name Description
Excluded

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

Included

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

Remarks

If the FilterType property is set to PivotFilterType.Included, only those data source records which have the filter values in the corresponding field are displayed and processed by the pivot grid. If the FilterType property is set to PivotFilterType.Excluded, data source records which have the filter values in the corresponding field are hidden from the pivot grid.

See Also