height
Optional. Sets the height of DataView
height?: number | string;
Default value: "auto" - adjusts to the container height
Example
// sets the height as a number
const dataview = new dhx.DataView("dataview_container", {height: 700});
// sets the height as a string value
const dataview = new dhx.DataView("dataview_container", {height: "700px"});
Related sample: Dataview. Setup Dataview height
The usage of the CSS calc() function within the height property is not possible.