I want to hide gridlines of react-chartjs-2 line chart. I have tried with the below code. But not working.
scales: {
xAxes: [{
gridLines: {
display: false,
drawOnChartArea: false,
drawTicks: false
},
ticks: {
display: false
}
}],
}