7👍
✅
You need to set chart‘s hover mode to ‘nearest‘, in your chart options config, like so :
options: {
hover: {
mode: 'nearest'
},
...
this will ensure that only the hovered data-point gets active.
Here is the working fiddle.
Source:stackexchange.com