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

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.v21.2.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