var ctx = document.getElementById('myChart').getContext('2d');
var myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: ['2019', '2020', '2021', '2022', '2023'],
datasets: [{
data: [1, 2, 3, 4, 5, 6, 7, 8, 9],
backgroundColor: [
'#85B8ED',
'#85B8ED',
'#85B8ED',
'#85B8ED',
'#85B8ED'
]
}]
},
options: {
responsive: true,
scales: {
yAxes: [{
ticks: {
beginAtZero: true,
},
gridLines: {
}
}],
xAxes: [{
gridLines: {
display: false
}
}]
}
}
});