Change Chart X axis label height

How can I change X axis label height correctly ? I try to set height with css not working fine (yellow mark in snippet)

https://snippet.webix.com/ymkebv3q

Hello finzaiko

To change X axis label correctly use css property to set a custom class to the view container to override the build-in styles for the horizontal axis:

.my_style  .webix_axis_item_x{ 
  padding-top:30px; 
  padding-bottom:30px; 
  }

Also you need to set bottom padding for the view to make it work correctly:

 padding:{
            bottom:120,
 },

Please check the example: Code Snippet

Thanks @Natalia_Shilova for help
That’s I want