DxDataGridBase<T>.VerticalScrollBarMode Property
Specifies the vertical scrollbar’s display mode.
Namespace: DevExpress.Blazor.Base
Assembly: DevExpress.Blazor.dll
Declaration
[Parameter]
public ScrollBarMode VerticalScrollBarMode { get; set; }
Property Value
Use the VerticalScrollBarMode property to control the visibility of the vertical scroll bar in the grid. To specify the horizontal scroll bar's display mode, use the HorizontalScrollBarMode property.

<DxDataGrid Data="@DataSource"
VerticalScrollBarMode="@ScrollBarMode.Auto"
VerticalScrollableHeight="300"
PageSize="30" >
...
</DxDataGrid>
Online Demo
Data Grid - Scrolling
See Also