score:0

Great solution from Ted Whitehead. I found this also works with simply;

gridLines: {
  color: "transparent"
}

score:5

This also seems to work:

gridLines: {
  lineWidth: 0,
  zeroLineWidth: 1
}

score:9

These settings worked for me:

gridLines: {
  color: "transparent",
  display: true,
  drawBorder: false,
  zeroLineColor: "#ccc",
  zeroLineWidth: 1
}

http://www.chartjs.org/docs/latest/axes/styling.html#grid-line-configuration


Related Query

More Query from same tag