minHeight
Optional. The minimal height to be set for a cell
minHeight?: number | string;
Example
const layout = new dhx.Layout("layout_container", {
cols: [
{ header: "Cell header", minHeight: "40px"}
]
});
In case both height and minHeight properties are set in the configuration of a cell, the minHeight option is a priority.
Change log:
added in v7.0