sets the height of the component
webix.ui ({
view:"window",
height:300,
width:300,
...
});
If you want to set flexible height, you need to set the -1 value for this property:
webix.ui({
view:"barcode",
height: -1
});