Skip to main content
All docs
V25.1
  • DevExpress v25.1 Update — Your Feedback Matters

    Our What's New in v25.1 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

    PivotGridControl.CustomFilterPanelDisplayText Event

    Allows you to display custom text instead of a filter expression in the legacy Filter Panel (Prefilter Panel).

    Namespace: DevExpress.Xpf.PivotGrid

    Assembly: DevExpress.Xpf.PivotGrid.v25.1.dll

    NuGet Package: DevExpress.Wpf.PivotGrid

    #Declaration

    public event EventHandler<CustomFilterPanelDisplayTextEventArgs> CustomFilterPanelDisplayText

    #Event Data

    The CustomFilterPanelDisplayText event's data class is DevExpress.Xpf.PivotGrid.CustomFilterPanelDisplayTextEventArgs.

    #Remarks

    The text displayed within the legacy Filter Panel (Prefilter Panel) is returned by the PivotGridControl.FilterPanelText property. To replace this text with the custom text:

    1. Handle the PivotGridControl.CustomFilterPanelDisplayText event.
    2. Specify the CustomFilterDisplayTextEventArgs.Value property.

    Tip

    The Prefilter Panel is a legacy approach, use the new Filter Panel instead.

    See Also