DxPivotTable.SizeMode Property
In This Article
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
#Property Value
Type | Default | Description |
---|---|---|
Nullable<Size |
null | The size mode. If the property is not specified (the value is |
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.
Razor
<DxPivotTable Data="SalesData"
SizeMode="SizeMode.Small">
<Fields>
@*...*@
</Fields>
</DxPivotTable>
See Also