Google Charts - Category Filter Callback? -
is possible call function whenever option in category filter selected?
the answer here i'm looking for, since i'm using google's api i'd assume can't access element's html , attach onchange() event. callback google docs mention setonloadcallback(), it's entire dashboard.
any appreciated. thanks!
this should possible statechange listener:
function statechangehandler() { console.log("hello"); }; google.visualization.events.addlistener(**name-of-your-filter**, 'statechange', statechangehandler);
Comments
Post a Comment