chartjs-plugin-labels
chartjs-plugin-labels copied to clipboard
Most label not showing
Top label not shwong. Is anyway to fix it, or is it a bug?
https://stackoverflow.com/questions/55610388/chart-js-label-not-showing-on-top
@bilalmalkoc this not a bug. please also put title display true so it visible values clearly do like this
options: {
plugins: {
labels: {
render: 'label'
}
},
title: {
display: true,
},
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}