Skip to main content
All docs
V25.1
  • DxPivotTable.AllowFilterInFieldList Property

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

    Namespace: DevExpress.Blazor.PivotTable

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

    NuGet Package: DevExpress.Blazor.PivotTable

    Declaration

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

    Property Value

    Type Default Description
    Boolean true

    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 more information: Field Customization in the UI.

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

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

    Run Demo: Pivot Table - Field Customization

    See Also