cellHeight

defines the height of a cell in pixels

number cellHeight;

Example

webix.ui({
    view:"dashboard",
    gridColumns:4, gridRows:3,
    cellHeight: 200, cellWidth: 200,
    cells:[
        { view:"panel", x:0, y:0, dx:1, dy:1, body:{ template:"Single"}},
        { view:"panel", x:1, y:0, dx:2, dy:1, body:{ template:"Wide"}}
        // more cells
    ]
});

Related samples

See also
Back to top