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

PivotGridOptionsCustomization.AllowFilter Property

Gets or sets whether filter buttons are displayed within field headers.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v21.2.Core.dll

NuGet Package: DevExpress.PivotGrid.Core

Declaration

[DefaultValue(true)]
public bool AllowFilter { get; set; }

Property Value

Type Default Description
Boolean true

true to display filter buttons within field headers; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to AllowFilter
XRPivotGrid
.OptionsCustomization .AllowFilter

Remarks

The AllowFilter property specifies whether filter buttons are displayed within field headers. If this property is set to false, end-users cannot apply filter conditions to field values. Individual fields have a PivotGridFieldOptions.AllowFilter property that takes priority over the pivot grid’s AllowFilter property.

To specify whether end-users are allowed to apply filtering by summaries, use the PivotGridOptionsCustomization.AllowFilterBySummary property.

See Also