Skip to main content
All docs
V25.1
  • PivotTableAllowedAreas Enum

    Lists values that specify areas where a Pivot Table field can be positioned.

    Namespace: DevExpress.Blazor.PivotTable

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

    NuGet Package: DevExpress.Blazor.PivotTable

    Declaration

    [Flags]
    public enum PivotTableAllowedAreas

    Members

    Name Description
    Row

    The Row area.

    Column

    The Column area.

    Filter

    The Filter Area.

    Data

    The Data area.

    All

    All areas: Row, Column, Data, Filter.

    Related API Members

    The following properties accept/return PivotTableAllowedAreas values:

    Remarks

    The Blazor Pivot Table allows users to customize data layout by dragging field headers between areas: Rows, Columns, Data, Filter. This capability helps users view data from different perspectives without the need for code modifications.

    Pivot Table - Drag Fields

    Use the AllowedAreas property to specify areas where a field can be placed if a user drags it.

    <DxPivotTable Data="SalesData">
        <Fields>
            <DxPivotTableField Field="@nameof(Sales.SaleInfo.Region)"
                               Area="@PivotTableArea.Row"
                               AreaIndex="0" 
                               AllowedAreas="PivotTableAllowedAreas.Row|
                                             PivotTableAllowedAreas.Column|
                                             PivotTableAllowedAreas.Filter" />
            @*...*@
        </Fields>
    </DxPivotTable>
    
    See Also