wpf-devexpress-dot-xpf-dot-pivotgrid-dot-pivotgridcontrol-a5f5912f.md
Specifies the type of the filter drop-down invoked by clicking a filter button in the field header. This is a dependency property.
Namespace : DevExpress.Xpf.PivotGrid
Assembly : DevExpress.Xpf.PivotGrid.v25.2.dll
NuGet Package : DevExpress.Wpf.PivotGrid
public FilterPopupMode FieldFilterPopupMode { get; set; }
Public Property FieldFilterPopupMode As FilterPopupMode
| Type | Description |
|---|---|
| FilterPopupMode |
An enumeration member that specifies the type of the filter drop-down.
|
Available values:
| Name | Description |
|---|---|
| Default |
Default value
| | Legacy |
| | Excel |
|
The Pivot Grid supports Excel-style and Classic pop-up filters. You can specify the pop-up filter style at three levels:
Application level
Control level
Field level
See Pop-up Filter for more information.
You cannot use Excel-style filters in the following cases:
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the FieldFilterPopupMode 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.
wpf-pivotgrid-customize-filter-drop-down/CS/WpfPivotCustomFilterDropDownExample/MainWindow.xaml#L44
Name="pivotGridControl1"
FieldFilterPopupMode="Excel"
ShowOnlyAvailableFilterItems="True">
See Also