Chartjs-Is it possible to add individual labels to Chart.JS bars?

0👍

Maybe not quite what you asked for, but you could add it to the tooltip.

options: {
  tooltips:{
    callbacks: {
       afterLabel: function(e){return "added By:" +data.User[e.datasetIndex][e.index]}
    }
  }
}

https://jsfiddle.net/r71no58a/7/

Leave a comment