ABCPDF を使用して、HTMl ページを PDF に変換します。highcharts で生成されたチャートを除いて、すべて正常に動作します。usescript タグは true に設定されていますが、文字がレンダリングされる領域は空のままです。IE9 では、グラフがレンダリングされます。誰かが解決策を知っていますか?
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();