I am using ABCPDF 8 for .NET to generate PDF.
Doc theDoc = new Doc();
theDoc.HtmlOptions.Engine = EngineType.Gecko;
theDoc.HtmlOptions.UseScript = true;
theDoc.Rect.Inset(20, 20);
int theID = theDoc.AddImageHtml(html, true, 600, true);
The PDF generates fine. Although I added google charts to the page:
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("visualization", "1.0", { packages: ["corechart"] });
</script>
Now PDF generation hangs on AddImageHtml method. Note that the HTML itself (with charts) is displayed fine in the browser.