Chartjs-Custom tooltip in Chart JS(React implementation) works incorrectly with interaction intersect false

0👍

I’ve finally fixed that! So the problem was in hovering custom tooltip itself and it caused some strange behaviour. To fix this you just need to remove pointer-events from your tooltip:

tooltip.style.pointerEvents = 'none';

Leave a comment