Chartjs-JSON QuickChart.io Change the Chart Size

0👍

Your config is invalid, there is no grid option in the root of the options.

Depending on if quick chart is using chartjs V2 or v3 you need to configure it in the scales section

V2: options.scales.xAxes[0].gridLines.display

V3: options.scales.x.grid.display

And then you replace x by y to remove the y grid

Leave a comment