Is it possible to create charts, e.g. bars and pies with custom icons using NodeJS?
相关问题
- npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fs
- google-drive can't get push notifications
- How to reimport module with ES6 import
- Why is `node.js` dying when called from inside pyt
- How to verify laravel passport api token in node /
相关文章
- node连接远程oracle报错
- Mercurial Commit Charts / Graphs [closed]
- How can make folder with Firebase Cloud Functions
- @angular-cli install fails with deprecated request
- Change color of bars depending on value in Highcha
- node.js modify file data stream?
- How to resolve hostname to an ip address in node j
- Transactionally writing files in Node.js
using highcharts
you have to install
refer the following link
https://github.com/davidpadbury/node-highcharts
You can use any charts library, basically. For example:
On your server template code, you might want to output the data using server variable. Example below using swig template engine, ExpressJS and Chartist library
Find out more about other charts library here
d3 is probably your best bet. It can generate nearly any type of chart imaginable.
You can generate the charts directly in the browser, or if you really need an image file, you can use the module in node and convert the output to an image.