0👍
✅
You will need to set intersect: false
for the tooltips
object in your chart options, like so ….
$scope.options = {
tooltips: {
intersect: false
},
//other options goes here...
}
This will make the tooltips show even if the cursor is not directly hovered over the point.
Source:stackexchange.com