Back to Devexpress

DxPivotTable.AllowFilterInFieldList Property

blazor-devexpress-dot-blazor-dot-pivottable-dot-dxpivottable-17fe328d.md

latest1.8 KB
Original Source

DxPivotTable.AllowFilterInFieldList Property

Specifies whether users can apply field filters in the Field List.

Namespace : DevExpress.Blazor.PivotTable

Assembly : DevExpress.Blazor.PivotTable.v25.2.dll

NuGet Package : DevExpress.Blazor.PivotTable

Declaration

csharp
[DefaultValue(true)]
[Parameter]
public bool AllowFilterInFieldList { get; set; }

Property Value

TypeDefaultDescription
Booleantrue

true to allow users to apply field filters in the Field List; otherwise, false.

|

Remarks

The Pivot Table includes a Field List that allows users to manage component layout. Users can drag fields, change field sort order, and apply filters. Refer to the following topic for additional information: Field Customization in the UI.

The following code prevents users from setting field filters in the Pivot Table’s Field List:

razor
<DxPivotTable Data="SalesData"
              AllowFilterInFieldList="false">
    <Fields>
        @*...*@
    </Fields>
</DxPivotTable>

Run Demo: Pivot Table - Field Customization

Implements

AllowFilterInFieldList

See Also

DxPivotTable Class

DxPivotTable Members

DevExpress.Blazor.PivotTable Namespace