[Chartjs]-Hide gridlines in chartjs without the drawTicks

11👍

Yes you can,
to hide the gridlines without removing the little ticks you can do this :

 gridLines: {
     drawOnChartArea: false
 }

Leave a comment