height
sets the height of a grid
height?: number;
Example
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
height: 400,
data: dataset
});
Related sample: Grid. Custom sizes
sets the height of a grid
Example
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
height: 400,
data: dataset
});
Related sample: Grid. Custom sizes