Interface IMultiTableRowRendererOptions

interface IMultiTableRowRendererOptions {
    async: IDelayedMode;
    columnPadding: number;
    minScrollDelta: number;
}

Properties

async: IDelayedMode

async update on scrolling animation -> use requestAnimationFrame sync -> execute within scroll listener {number} -> execute within this delay using setTimeout

is chrome ? animation else 0
columnPadding: number

column padding to use between columns

0
minScrollDelta: number

minimal number of pixel the scrollbars has to move

30