Container Width: {{ containerWidth }}
Total Height: {{ virtualTotalHeight }}
Visible Rows: {{ visibleRows.map((entry) => entry.height).join(",") }}
Cell Heights:
{{
rowHeights.map((entry) =>
entry.cellHeights?.map((entry) => `${entry.isCustomRenderer ? "*" : ""}${entry.height}`).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),
}))
}}