How to hide y axis line in ChartJs?

Jaipradeesh picture Jaipradeesh · Jul 26, 2016 · Viewed 52.6k times · Source

I am using bubble chart and gotta hide the y axis line. I've tried the following but it doesn't work.

Answer

Matt picture Matt · Feb 26, 2017

This disables the vertical Y axis line:

options: {
  scales: {
    yAxes: [{
      gridLines: {
        drawBorder: false,
      },
    }]
  },
},

This can be combined with display to disable the vertical gridLines:

xAxes: [{
  gridLines: {
    display: false,
  },
}],

Here's a working example: http://codepen.io/anon/pen/xqGGaV