The grid rows total height and row positions.

interface GridRowsMetaState {
    currentPageTotalHeight: number;
    pinnedBottomRowsTotalHeight: number;
    pinnedTopRowsTotalHeight: number;
    positions: number[];
}

Properties

currentPageTotalHeight: number

The sum of all visible grid rows in the current rows.

pinnedBottomRowsTotalHeight: number

The total height of the pinned bottom rows.

pinnedTopRowsTotalHeight: number

The total height of the pinned top rows.

positions: number[]

The grid rows positions.