How to set width of text yAxis?

If the numbers are large, the captions of value yAxis run over to title.
How to fix it?
https://snippet.webix.com/wg2lmoxx
And how to move down legend relative to chart?

Hello @Natalya ,

If the numbers are large, the captions of value yAxis run over to title. How to fix it?
Please, use padding property:

webix.ui({
    view:"chart",
    ...
    padding:{
        left:70
    }
})

And how to move down legend relative to chart?
As a solution, you can set a height for the legend.

Please take a look at the snippet:
https://snippet.webix.com/t9rbhxxm

Thanks. That’s it.