13.09.2022, 10:17
This will be fixed in the next release. In the meantime you can use this custom JS:
Code:
$(function(){
if (window.Chart) {
Chart.$c.on('mousemove', function() {
var el = document.querySelector('.flotr-legend-hl');
if (el) {
el.scrollIntoView();
}
});
}
});