Chartjs-How can I apply hover properties only to the current point not the entire dataset

0👍

Found the answer. When creating the chart you can specify it in the options.

options: {
  hover: {
    mode: 'single'
  }
}

Leave a comment