Skip to main content
All docs
V24.2

DxPivotTable.SizeMode Property

Specifies the size of Pivot Table elements (for instance, text size and cell height).

Namespace: DevExpress.Blazor.PivotTable

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

NuGet Package: DevExpress.Blazor.PivotTable

Declaration

[DefaultValue(null)]
[Parameter]
public SizeMode? SizeMode { get; set; }

Property Value

Type Default Description
Nullable<SizeMode> null

The size mode. If the property is not specified (the value is null), the size is determined by the SizeMode global option.

Available values:

Name Description
Small

Small size.

Medium

Medium size.

Large

Large size.

Remarks

The following code applies the Small size mode to the Pivot Table.

<DxPivotTable Data="SalesData"
              SizeMode="SizeMode.Small">
    <Fields>
        @*...*@
    </Fields>
</DxPivotTable>

Pivot Table - Small size mode

See Also