I am trying to get rid of the numbers displayed on the bar graphs. I need some guidance on what changes to make in the Options array to achieve this. You can view my graph here: https://ibb.co/G7nR3mz
Below is the Options array I am working with:
this.Options = {
legend: {
labels: {
fontColor: '#495057'
}
},
scales: {
xAxes: [{
ticks: {
fontColor:'#495057'
},
gridLines: {
display: false
}
}],
yAxes: [{
ticks: {
fontColor:'#495057',
beginAtZero: true,
min: 0,
max: 80
}
}]
}
};
Any help would be greatly appreciated. Thank you!