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.v18.2.Core.dll

Declaration

[DefaultValue(true)]
[XtraSerializableProperty]
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:

Library Object Type Path to AllowFilter
WinForms Controls PivotGridControl
.OptionsCustomization.AllowFilter
ASP.NET Controls and MVC Extensions ASPxPivotGrid
.OptionsCustomization.AllowFilter
MVCxPivotGrid
.OptionsCustomization.AllowFilter
PivotGridSettings
.OptionsCustomization.AllowFilter
Reporting 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