itemHeight
sets the height of an item
itemHeight?: number | string;
Example
// sets the height of an item as a number
const dataview = new dhx.DataView("dataview_container", {
itemHeight:30
});
// sets the height of an item as a string value
const dataview = new dhx.DataView("dataview_container", {
itemHeight:"30px"
});
Related sample: Dataview. Setup Dataview item height
The usage of the CSS calc() function within the itemHeight property is not possible.