[Chartjs]-Chart.js click event to open a custom tooltip does not work sometimes

1👍

With tooltips.mode: 'nearest', the Chart.js documentations states:

If intersect is true, this is only triggered when the mouse position
intersects an item in the graph.

Try to set intersect: false or define better suited interaction mode (i.e. 'x')

Leave a comment