Chartjs-Index.js:354 Uncaught TypeError: document.getElementsAtEvent is not a function

1👍

You are trying to get the getElementsAtEvent function from the document, it does not live there. You need to call it on your chart instance like so:

this.chart.getElementsAtEvent(evt);

Leave a comment