I have access to a html file (stored locally as an output from a program) where in the generated page, it contains pie charts. I want to be able to download these pie charts as .png. LOoking at the page source I find this:
google.visualization.events.addListener(consequences_pie, 'select', function() {
consequences_table.setSelection(consequences_pie.getSelection());
});
How to I scrape the pie chart produced? I understand this can be built in using the google API, however I have no control over the generation of page.
thanks very much.