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?
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