To be more specific on how to recreate:
If you go to this link:
https://code.google.com/apis/ajax/playground/?type=visualization#chartrangefilter_control
Then at the very bottom of the javascript place the following code after
the line "dashboard.draw(data);" you can recreate.
dashboard.draw(data); //leave this line, the rest is new
setTimeout(function () {drawChart(dashboard, data);}, 500);
}
function drawChart(dashboard, data) {
dashboard.draw(data);
google.visualization.events.removeAllListeners(dashboard);
setTimeout(function () {drawChart(dashboard, data);}, 500);
}
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-visualization-api/-/9yR6fryl370J.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-visualization-api?hl=en.