Chartjs-Showing labels on bubble chart in angular-charts

0👍

You need to specify it within the options of Chartjs, specifically the callback part. I’ve given an example of what that looks like. Chart JS Documentation

    vm.options = {
    "callbacks": {
        "label": function (tooltipItem, data) {
          return data.datasets[tooltipItem.datasetIndex].label;
        }
     }

Leave a comment