Help on label ellipses

Hi all,
is there a way to avoid ellipses on label on the left side of a field in a form? I like the automatic webix sizing which aligns the right margin of fields to each other but ellipses are a little bit ugly. I have tried the label option width but forms field lose the right alignment.
Thank you

labelWidth accepts only numeric values, so it’s not possible to autosize the embedded label and preserve the proper sizing features of the control. On the other hand, ui.label has the same sizing features as any other control. Usually, we recommend using such separate label.

Listopad I have tried your hint but after several approaches I decided for the best solution I have found:

"elementsConfig": {
    "labelAlign": "right",
    "labelWidth": 120
},

The webix automatic resizing and alignment of field in forms are too comfortable and I don’t want to loose them

Thank you