SMART datagrid v.1 > Classes > DisplayOptions
The minimum height value of rows when the user updates the row height by dragging the mouse or the grid automatically calculates the row height.
It is specified in pixels. You can specify the maximum height by maxRowHeight.
Defaults to 4.
grid.setOptions({
display: {
maxRowHeight: 10,
minRowHeight: 10
}
});
grid.setDisplayOptions({
maxRowHeight: 10,
minRowHeight: 10
});
grid.displayOptions().setMinRowHeight(10);