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 |
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>
See Also