We use ABCPDF to convert a HTMl page to a PDF. Everything works fine, except the charts generated with highcharts.The usescript tag is set to true, but the area where the chars is rendered stays empty. In IE9 the charts is rendered. anyone knows a solution?
Doc theDoc = new Doc();
theDoc.HtmlOptions.UseScript = true;
theDoc.HtmlOptions.ImageQuality = 100;
theDoc.AddImageUrl("/factsheet.html", false, 984, true);
byte[] theData = theDoc.GetData();
Response.Clear();
Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "inline; filename=MyPDF.PDF");
Response.AddHeader("content-length", theData.Length.ToString());
Response.BinaryWrite(theData);
Response.End();