LyteNyte Grid allows you to customize row heights to create either dense or spacious layouts. The
rowHeight
property controls the height of rows in pixels and can be configured as either a fixed
value or a dynamic function that determines height on a per-row basis.
When the rowHeight
property is set to a number, all rows in the grid will have the same uniform
height.
You can dynamically adjust row heights after the grid has been initialized by updating the
rowHeight
state property:
grid.state.rowHeight.set(40); // Set all rows to 40px height
For more flexibility, you can provide a function to the rowHeight
property. This function will be
called for each row to determine its specific height. LyteNyte Grid calls this function in advance
to calculate the total scrollable height required for all rows in the dataset.