[Chartjs]-Chart.js grid lines not hiding

3👍

Just change “gridlines” to “gridLines”
“L” in caps

You can see the live example on site:
http://www.chartjs.org/samples/latest/scales/gridlines-display.html

2👍

vAxis: {
            gridlines: {
                color: 'none'
            }
       },
hAxis: {
            gridlines: {
                 color: 'none'
            }
         }

is working for me. You can try ‘transparent’ too I think instead of ‘none’

Leave a comment