Skip to main content
All docs
V25.1
  • 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