使用 highcharts 在服务器端生成 svg
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要先安装所有必需的模块。首先从他的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