Skip to main content
All docs
V26.1
  • PivotGridControl.FieldFilterPopupMode Property

    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.v26.1.dll

    NuGet Package: DevExpress.Wpf.PivotGrid

    Declaration

    public FilterPopupMode FieldFilterPopupMode { get; set; }

    Property Value

    Type Description
    FilterPopupMode

    An enumeration member that specifies the type of the filter drop-down.

    Available values:

    Name Description
    Default

    Default value

    Legacy

    Legacy Mode

    Excel

    Excel Mode

    Remarks

    The Pivot Grid supports Excel-style and Classic pop-up filters. You can specify the pop-up filter style at three levels:

    1. Application level

      Use the static CompatibilitySettings.UseLegacyColumnFilterPopup property for all controls in the application.

    2. Control level

      Use the PivotGridControl.FieldFilterPopupMode property for PivotControl’s fields. This control level setting overrides the UseLegacyColumnFilterPopup global setting.

    3. Field level

      Use the PivotGridField.FilterPopupMode property for a specific field. The field level setting overrides the control level settings.

    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.

    See Also