Chart Js Remove Grid

chart js remove grid
var options = {
scales: {
xAxes: [{
gridLines: {
display:false
}
}],
yAxes: [{
gridLines: {
display:false
}
}]
}
}
chart js remove grid
options: {
scales: {
xAxes: [{
gridLines: {
drawOnChartArea: false
}
}]
}
}

 

Leave a Comment