I am using bubble chart and gotta hide the y axis line. I've tried the following but it doesn't work.
yAxes: [{
angleLines: {
display: false
}
}]
I am using bubble chart and gotta hide the y axis line. I've tried the following but it doesn't work.
yAxes: [{
angleLines: {
display: false
}
}]
This disables the vertical Y axis line:
This can be combined with
display
to disable the vertical gridLines:Here's a working example: http://codepen.io/anon/pen/xqGGaV
For the latest chart.js (v2.9.3) library: You can do this in chart options to disable a particular axis:
This chart can be obtained like so:
so if you only want to hide the grid lines only on the chart , but keep the axis line:
With above examples it will be like: