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