Bars with no vertical grid lines

Hello, I have a bar chart and I’d like to hide only the vertical grid lines while keeping the horizontal ones visible. Is there a way to configure this?

That is easy, you need the property xAxis to set some custom echarts configs, let me show you an example:

yourChart.set("xAxis", { "show": false })

With that the vertical grid lines will not be rendered

1 Like

The chart now looks exactly the way I wanted. Thank you very much!