Row Height

Set row height with customTheme.rowHeight.

Set row height

Pass a pixel value via customTheme.

React TSX
<SimpleTable columns={columns} rows={rows} customTheme={{ rowHeight: 40 }} />

Example

Compact rows (32px). Use Code or StackBlitz for the full example.

Header and footer height

Match header/footer sizing with customTheme.headerHeight and customTheme.footerHeight. Full list on Custom Theme.

Props

Row Height Configuration

PropertyRequiredDescriptionExample
customTheme.rowHeight
number
Optional
Height of every data row in pixels. Defaults to 32. Passed via customTheme — the virtualization engine uses this value for layout.