How to create charts using NodeJS?

Riz picture Riz · Mar 18, 2013 · Viewed 73.7k times · Source

Is it possible to create charts, e.g. bars and pies with custom icons using NodeJS?

Answer

josh3736 picture josh3736 · Mar 18, 2013

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.