Rows

Row Height

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.

Fixed Row Height

When the rowHeight property is set to a number, all rows in the grid will have the same uniform height.

Row Height Fixed
TODO

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

Variable Row 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.

Row Height Variable
TODO