How to remove or change color of Axis lines on Charts

I want to remove the black X and Y axis lines on the bar chart. I was able to remove the grid lines, but there are still these two lines remaining. How to remove or change color?

https://snippet.webix.com/0759b846

Hello!

You can add color to these axes lines

  xAxis:{
        color:"#17a870",		// axis
        ...
      },
      yAxis:{
        color:"#17a870",
        ...
      }, 

Please check the sample: Code Snippet
You can find information here