Live data from Hacker News

Ask HN: Your favorite open-source JavaScript Library for charts?

news.ycombinator.com

1–10 of 11 posts

Re: Ask HN: Your favorite open-source JavaScript Library for charts?

#8

The one I use is HighCharts [1] Very clean and very good. [1] - http://www.highcharts.com/

I love HighCharts and use it for my open-source project at http://solarpi.tafkas.net

If you have a commercial product you have to pay for the license though.

Re: Ask HN: Your favorite open-source JavaScript Library for charts?

#9
After using several different libraries over the past few years, I've started using D3.js on its own. While it's more work than dropping something ready-made into an app, it's more flexible.

If you have specific designs/requirements to work from, it may be easier to build the charts with D3 than trying to shoehorn a stock chart into matching the spec. Behaviors like linking chart interactions to independent components (or vice versa) become easier to implement as well.

If you care less about flexibility, Chartist is a solid contender: https://gionkunz.github.io/chartist-js/

Re: Ask HN: Your favorite open-source JavaScript Library for charts?

#10
post #9

After using several different libraries over the past few years, I've started using D3.js on its own. While it's more work than dropping something ready-made into an app, it's more flexible. If you have specific designs/requirements to work from, it may be easier to build the charts with D3 than trying to shoehorn a stock chart into matching the spec. Behaviors like linking chart interactions to independent component…

These two videos from Scott Murray are a great intro to D3 if you haven't worked with it before:

https://www.safaribooksonline.com/library/view/an-introducti...

https://www.safaribooksonline.com/library/view/intermediate-...

Post reply on HN