Long Axis lables in charts

Hello!
Is it possible to write labels on several rows if text is too long?
http://joxi.ru/D2P446DFdW77y2
Thx a lot for answer.

Hello,

y-axis labels uses ‘webix_axis_item_y’ css. So, you can try the following:

<style>
    .webix_axis_item_y{
        height:auto;
        white-space: normal;
    }
</style>

Thx a lot, Maria! It works great!