[Chartjs]-Charts.js global options gridLines

1👍

Have you tried Chart.defaults.scale.gridLines.display = false ?

0👍

You can set a transparent color for the grid lines:

scales: {
  xAxes: [{
    display: true,
    gridLines: { color: 'rgba(0,0,0,0)' },
    ...
  }],
  ...
}

Leave a comment