Home > @activeviam/activeui-sdk > RangeConfiguration
RangeConfiguration interface
Example: for the rows axis, a thresholdPercentage of 0.1 for a chunkSize of 2000 means that the initial table will load the rows 0 to 2000, and when scrolling past row 1800, a new chunk of 2000 rows centered on 1800 will be downloaded from 800 to 2800, and so on. To disable lazy loading, set chunkSize to -1 and any thresholdPercentage.
Signature:
export interface RangeConfiguration
Properties
| Property | Type | Description |
|---|---|---|
| axisLength | number | |
| chunkSize | number | How many rows/columns are downloaded. |
| thresholdPercentage | number | Defines when to trigger a new range update. |