score: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
    }
}

Related Query

More Query from same tag