Chartjs-Format Tooltip Chartjs TypeScript Angular

0👍

Solution :

tooltips: {
      mode: 'label',
      callbacks: {
        label: function(tooltipItem: any, data: any) {
          let indice = tooltipItem.index;
          return  data.labels[indice] ;
        }
      }
    },

Leave a comment