Event on Chart.JS's Bar Chart's mousein and mouseout?
问题 I've scoured the bar chart and event docs (which I find a bit confusing) and I've been unable to figure out how to act on a mousein and mouseout event when hovering over a Bar chart's bars (not the legend!). Currently the closest I've been able to come is utilizing the callback on the tooltip like so: options.tooltips = { backgroundColor: 'rgba(0,0,0,0)', fontColor: 'rgba(0,0,0,0)', callbacks: { label: function (tooltipItem) { // flipping a bool here } } }; This solution doesn't work well