admin管理员组文章数量:1341738
I have a node.js application that accesses data of a MySQL database and I want to generate charts from that data dynamically, to pipe it as image (PNG/JPG) through a HTTP server to the user. I've search for a little while now, but I was unable to find a library to do this without the HTML/canvas approach. Since I want to let the server do the rendering to use the graph in emails or also dynamically rendered PDF files, this isn't an option here.
What could be the approach here (with or without a library) ?
Edit to provide proof of own work: I found , which is in terms of usage and result really close to fulfil my needs, but requires an internet connection, since it calls a remote API.
I have a node.js application that accesses data of a MySQL database and I want to generate charts from that data dynamically, to pipe it as image (PNG/JPG) through a HTTP server to the user. I've search for a little while now, but I was unable to find a library to do this without the HTML/canvas approach. Since I want to let the server do the rendering to use the graph in emails or also dynamically rendered PDF files, this isn't an option here.
What could be the approach here (with or without a library) ?
Edit to provide proof of own work: I found https://plot.ly, which is in terms of usage and result really close to fulfil my needs, but requires an internet connection, since it calls a remote API.
Share edited Jan 18, 2016 at 12:28 XQDev asked Jan 18, 2016 at 12:05 XQDevXQDev 3665 silver badges15 bronze badges 12- Clearly off topic (read How to Ask). why would anyone upvote this? – Amit Commented Jan 18, 2016 at 12:10
- I edited the question to make it more obvious to passing by users that this is a real question and not a request for a library. – Denys Séguret Commented Jan 18, 2016 at 12:10
- Why canvas isn't an option? You can render on canvas and get the image data to either send to the client or save on the server for later use in pdfs or whatever. – pawel Commented Jan 18, 2016 at 12:12
- 1 You could use python for chart rendering. take a look at this thread: stackoverflow./questions/10775351/… – Hauke S Commented Jan 18, 2016 at 12:17
- 1 You could try a chartist wrapper for node: github./panosoft/node-chartist – hansmaad Commented Jan 18, 2016 at 12:23
3 Answers
Reset to default 9You could also try asking this in the Software Recs Stack Overflow. But one option that seems like it could fit your needs is ZingChart.
They have a phantomJS build for rendering static versions of charts. In addition, licensed users can access a Node.js build for server side charting.
Full disclosure, I'm on the ZingChart team so please let me know if I can help you review all your options.
There is a node wrapper for the chart library chartist. You could use this library to generate a SVG, and a svg2png lib to convert to PNG.
Well there are multiple options, I would use phantomjs (headless Webkit browser) to render the charts.
Why would this option be good? One of the reasons is that you don't need duplicated code for the server and client side coding, you could simply reuse the code. On server side create a html file with required scripts and data and render it.
本文标签: javascriptGenerate charts without HTMLBrowserStack Overflow
版权声明:本文标题:javascript - Generate charts without HTMLBrowser - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743679073a2520814.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论