Wanting to Customize Grid Background Colors in Line Chart using react-chartjs-2
I am looking to have different background colors for each grid in my Line chart. Is this functionality possible with the react-chartjs-2 library?
This is the desired appearance of the LineChart: https://i.sstatic.net/ZayIy.png
Below is my current code/configuration:
const options = {
responsive: true,
scales: {
y: {
grid: {
backgroundColor: [
'rgba(36, 206, 0, 0.8)',
'rgba(255, 255, 0, .8)',
'rgba(255, 162, 0, 0.8)',
'rgba(36, 206, 0, 0.8)',
],
},
};
Thank you for taking the time to review.