headerHeight
Optional. Sets the height of the header of a Layout cell
headerHeight?: number;
Default value: 37
Example
const layout = new dhx.Layout("layout_container", {
rows: [
{
id: "row1"
},
{
id: "row2",
headerHeight: 80
}
]
});
Related sample: Layout. Header
If the header property is not set in the config of a cell, the headerHeight option will add a header without text for a cell.
Change log:
added in v6.4