SMART datagrid v.1 > Classes > DisplayOptions
The default height of rows.
If the value is 0, it will be displayed as the height which has been automatically calculated during run time. If set the value as greater than 0, it will not be calculated automatically, and will be displayed as the specified value.
Defaults to 0.
grid.setOptions({
display: {
rowHeight: 25,
minRowHeight: 10
}
});
grid.setDisplayOptions({
rowHeight: 25,
minRowHeight: 10
});
grid.displayOptions().setRowHeight(500);