ширина ярлыка
webix.ui({
view:"combo",
label: 'Фрукт',
labelWidth:100,
...
});
You can adjust the lable width to its content width by setting the labelWidth property to "auto":
{
view: "text",
label: "First Name",
labelWidth: "auto"
}
Related sample: Text Input: Autowidth for Label