Skip to main content
All docs
V24.2

DxPivotTable.VirtualScrollingEnabled Property

Specifies whether vertical virtual scrolling is enabled.

Namespace: DevExpress.Blazor.PivotTable

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

NuGet Package: DevExpress.Blazor.PivotTable

Declaration

[DefaultValue(false)]
[Parameter]
public bool VirtualScrollingEnabled { get; set; }

Property Value

Type Default Description
Boolean false

true to enable vertical virtual scrolling; otherwise, false.

Remarks

If the Pivot displays a large number of data cells, enable virtual scrolling to improve performance. Set the VirtualScrollingEnabled property to true. In this mode, the Pivot Table renders data on demand as a user scrolls through rows/columns.

<DxPivotTable Data="SalesData"
              VirtualScrollingEnabled="true">
    <Fields>
        @*...*@
    </Fields>
</DxPivotTable>

Virtual Scrolling

Run Demo

See Also