Chart changing font formats for x and y axis

how do add styling to the fonts on the x and y axis (I want bold and size to be 12)

@sri

Do you want like this https://snippet.webix.com/yz7rp2f9 ?

If yes you can add css like -
.webix_canvas_text{
font-weight: bold;
font-size:12px;
}

If you want to give custom css you can do like -https://snippet.webix.com/pikkns4a

you can also operate with x and y axis separately:
https://snippet.webix.com/29qt0jjy

Thank you so much! Worked perfectly.