2

我正在可折叠的 div 中生成带有图形相关信息的图形和 html 表。

现在的问题是我需要将 div 内容添加到我的 PDF 导出中,而不仅仅是图表,我看到有一个 chart.exportDivElements 但我找不到有关如何使用它的相关示例。

有人对此有任何想法吗?或通过javascript将highchart和特定div导出到PDF的替代方法?

4

2 回答 2

2

我实现了导出服务器并将 svg 文件(不需要转换为 jpg/png 代码)保存到服务器并使用 tcpdf 生成带有 svg 和所需内容的 PDF,有点难以理解如何导出服务器工作让我头脑清醒,工作得很好。

于 2013-08-23T10:53:14.097 回答
0

You can't. The export server exports the chart SVG, not any arbitrary html content of the page. A possible solution is to the alter the export server and introduce an extra POST parameter 'customHtml'. In the phantomJS script you have to detect if the parameter is set and write the tablecontent to the page before it is rendered.

于 2013-07-15T12:16:45.343 回答