I'm trying to acces a variable inside load callback function. I only have acces to this, and event parameters. Is it possible to set a new property to Highcharts object to acces it via this
?
This is what I'm trying to do:
chart: {
events: {
load: function() {
myBoolean ? console.log("HERE") : console.log("THERE");
}
}
},