Documentation

minColumnHeight

sets the minimum height for a row

number minColumnHeight;

Example

webix.ui({
    view:"datatable",
    minColumnHeight:40,
    ...
});

See also

Details

By default, the parameter is 26px.
Affects while row resizing only. If you need to set the default row height you need to use the rowHeight parameter.

Back to top