1👍
✅
You can try to disable animations and interactions to improve the speed and remove the fading and moving lines when clicking on legend items.
Disable Animations:
options: {
animation: false, // Disable all animations
}
Disable Interactions:
options: {
hover: {
mode: null, // Disable hovering interactions
},
interaction: {
mode: 'index', // Disable tooltip interactions
}
Source:stackexchange.com