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 }}