VirtualBufferSettings
Defines buffer settings for virtualization in the Data Grid component. Specifies the number of extra rows and columns rendered outside the viewport beyond the visible area. This buffer improves perception of scrolling smoothness by pre-rendering content that will soon become visible.
Props
The following table outlines the props for the VirtualBufferSettings:
| Name | Type | Default | Description |
|---|---|---|---|
| columns | number | 5 | Number of extra columns rendered to the left and right of the currently visible viewport. Larger values improve horizontal scrolling smoothness at the cost of increased DOM size. Helps reduce flickering and blank spaces during fast horizontal scrolling by pre-rendering upcoming columns. |
| rows | number | 5 | Number of extra rows rendered above and below the currently visible viewport. Larger values improve scrolling smoothness at the cost of increased DOM size. Helps reduce flickering and blank spaces during fast scrolling by pre-rendering upcoming rows. |