in a react project, I am making use of the react-google-charts library(yes, I know this is not maintained by google, just hear me out). It's a typescript port but it still fetches the relevant JS scripts from
https://www.gstatic.com/charts/loader.js in order to add click events to these charts you need to wait for the "ready" event to fire and give it a callback in which you call google.visualization.events.addListener(chart,"click",()=>{});
however, the "ready" event no longer seems to be firing, and thus my click events are not being added