Chartjs-Highlighting point in all datasets on hover over

0👍

You’re looking for options.hover.intersect:

if true, the hover mode only applies when the mouse position intersects an item on the chart.

The default is true so you should change it to false:

options: {
    hover: {
        intersect: false
    }
}

Leave a comment