Skip to main content
All docs
V24.2

DxPivotTableField.AreaIndex Property

Specifies the field’s index among other fields displayed within the same area.

Namespace: DevExpress.Blazor.PivotTable

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

NuGet Package: DevExpress.Blazor.PivotTable

Declaration

[Parameter]
public int AreaIndex { get; set; }

Property Value

Type Description
Int32

The field’s index (zero-based) among other fields.

Remarks

<DxPivotTable Data="SalesData">
    <Fields>
        <DxPivotTableField Field="@nameof(SaleInfo.Region)"
                           Area="@PivotTableArea.Row"
                           AreaIndex="0" />
        @*...*@
    </Fields>
</DxPivotTable>

Refer to the DxPivotTableField class description for more information and an example.

Implements

See Also