Skip to content

Experimental Features

This is an experimental feature and may change in future versions.

experimental.scrollY

Transform-based vertical scrolling simulation.

Due to browser limitations on DOM element height, displaying extremely large datasets may cause issues. Using transform to simulate scrolling resolves this problem.

Usage

svelte
<StkTable
  virtual
  scrollRowByRow
  experimental={{ scrollY: true }} 
  {dataSource}
  {columns}
/>

Released under the MIT License