Documentation

height

sets the height of the component

number height;

Example

webix.ui ({ 
    view:"window",
    height:300, 
    width:300,
    ...  
})

See also

Details

If you want to set flexible height, you need to set the -1 value for this property:

webix.ui({
    view:"barcode",
    height: -1
});
Back to top