Container Width: {{ containerWidth }}
Total Height: {{ virtualTotalHeight }}
Visible Rows: {{ visibleRows.map((entry) => entry.height).join(",") }}
Cell Heights:
{{
cellHeights?.map((rowCellHeights) =>
rowCellHeights
.map((entry) => (entry ? `${entry.isCustomRenderer ? "*" : ""}${entry.height}` : "null"))
.join(",")
)
}}
Total Rows: {{ pageData.length }}
Column widths: {{ columnWidths.map((w) => Math.round(w)).join(",") }}
Column configs:
{{
computedConfigs.map((c) => ({
key: c.key,
flexBasis: Math.round(c.flexBasis),
flexGrow: c.flexGrow.toFixed(1),
}))
}}