I need to export a google visualization chart to pdf in my Java EE application. Looks like all client side pdf tools (eg. JSPDF) are using HTML5 features and will not work in IE9 or below.
<img id="gChartImg"></div>
$("#gChartImg").attr("src",chart.getImageURI());
We're already using pdfbox to export the html to PDF. Is there any way to get this image in server side using $().ajaxform or webservices.
Any help is appreciated.