使用 highcharts 在服务器端生成 svg

发布于 2024-12-14 08:06:21 字数 404 浏览 2 评论 0原文

我在 Node js 中确实 require('jsdom') 但我经常遇到找不到 jsdom 模块的情况。 更重要的是,我想在服务器上使用 highcharts 生成一个 svg 文档,以便稍后我可以在我的 pdf 中使用该图像(我将使用 batik 将该 svg 转换为图像)。 有没有一个链接可以帮助我解决这个问题。 我已阅读 http ://blog.davidpadbury.com/2010/10/03/using-nodejs-to-render-js-charts-on-server/ 但原型没有多大意义。是否有一个已经实现的模块而不仅仅是一个原型?

I did require('jsdom') in node js but i constantly get jsdom module not found.
More over i want to generate a svg document using highcharts on the server so that i can later on use that image in my pdf( I will convert that svg to image using batik).
Is there a link that may help me with this.
I have read through the http://blog.davidpadbury.com/2010/10/03/using-nodejs-to-render-js-charts-on-server/
but the prototype didnt make much sense. Is there a module which has been implemented rather than just a prototype.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风流物 2024-12-21 08:06:21

您需要先安装所有必需的模块。首先从他的github下载tar文件 https://github.com/davidpadbury/node-highcharts 。转到保存文件的目录,然后点击

npm install davidpadbury-node-highcharts-576f763.tar.gz

如果您需要安装 jsdom 等其他模块,请尝试

npm install jsdom

他的原型似乎与旧版本的 highchart 配合得很好。但我在使用最新的 highchart 时遇到一些问题。

我希望这有帮助

You need to install all the required modules first. First download the tar file from his github https://github.com/davidpadbury/node-highcharts. Go to the directory where you saved the file and hit

npm install davidpadbury-node-highcharts-576f763.tar.gz

if you need to install additional modules like jsdom, try

npm install jsdom

His prototype seem to work fine with older version of highchart. but i am having some problem using it with latest highchart.

I hope this helped

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文