I want to make my chart static and not to show any tooltips and/or hover highlighting.
So I set options.events = []
for chart. This doesn’t work
https://jsfiddle.net/wcfp91bh/
If I set options.events = ["fakeEvent"]
. This works better but still provides tooltips for “click” event
https://jsfiddle.net/h7g8hngn/2/
Idk, but seems it shouldn’t work like this.
Any comments?
@demoalex You are right.
option.events = []
It won’t work. I think it’s a bug.@etimberg
but you also can set the global option:
Chart.defaults.global.events = [];
It can solve your problem right now.