Chartjs-Chart.js: how do I group labels in toolips?

1👍

Try add to chart bpOptions

interaction: {
  mode: 'index',
  intersect: false, // if true, the interaction mode only applies when the mouse position intersects an item on the chart.
},

more interactions in docs interaction modes

Leave a comment