[Chartjs]-Hover/mouseover not activated on every move inside element

2๐Ÿ‘

โœ…

Set the pointDot option to true.

...
pointDot : true,
...

Then set the pointColor and pointStrokeColor for the series to transparent and the pointHighlightFill and pointHighlightStroke to a non transparent value, like so

...
    pointColor: "rgba(0,0,0,0)",
    pointStrokeColor: "rgba(0,0,0,0)",
    pointHighlightFill: "rgba(95,186,88,1)",
    pointHighlightStroke: "rgba(95,186,88,1)",
...

Fiddle โ€“ http://jsfiddle.net/p1zgp5ys/

0๐Ÿ‘

ok, i got your issue, just set the pointDot value to true as mentioned below:

pointDot : true,

in var options

thatโ€™s it ๐Ÿ™‚

Leave a comment