Chartjs-Displaying dataset labels in Chart.js line graph

1👍

I managed to resolve this with the following:

var options = {
  responsive: true,
  multiTooltipTemplate: "<%%=datasetLabel%>: £<%%= value %>",
};

Leave a comment