Chartjs-Charts.js How to add a link when you click a barchart?

0👍

You can use the onClick function on the option object.

const options = {
  onClick(event, activeElements) {
    // id of your clicked element
    console.log(activeElements.pop()._index);
  },
}

Leave a comment