How do I put a percentage beside my X axis labels in chart js bar chart. My dataset is an Object with key value of Title and its count.
scales: {
x: {
ticks: {
min: 0,
max: 100,
callback: function(value) {
return value + "%"
}
},
scaleLabel: {
display: true,
labelString: "Percentage"
}
}
}
I tried this from a different question but it only makes all x labels 100%