Chartjs-Chartjs : Can I overwrite bar value on hover for every bar chart

0👍

You can use a custom tooltip callback:

tooltips: {
  callbacks: {
    label: (ttItem) => (new Date(ttItem.yLabel*1000).toISOString().substring(11, 19))
  }
}

Leave a comment