Ask HN: What charts javascript library to use?
21–30 of 67 posts
Re: Ask HN: What charts javascript library to use?
#22Re: Ask HN: What charts javascript library to use?
#23We use Flot currently, but we're looking at purchasing a license for Emprise. Specifically, they offer candlestick charts, which are difficult to find elsewhere, yet absolutely critical in expressing the volatility of series data. http://www.ejschart.com/ IMO, candlestick charts are way underutilized. Take application response time graphs for example. Most reporting suites rely on moving averages. If your application…
Re: Ask HN: What charts javascript library to use?
#24At New Relic, we use HighCharts ( http://highcharts.com/ ). We constantly get questions from our customers about which library we use, because they like the way they look and function. Highly recommended.
I second highcharts, i find it an absolutely excellent chart library. I even created a PHP wrapper for it so i could control it from the backend. Oh and I did this because i was bored: http://zestmonkey.com/charts.php
Re: Ask HN: What charts javascript library to use?
#25Re: Ask HN: What charts javascript library to use?
#26We use the Google Charts API - it's free and very good. But I haven't seen many others comment about it. Is there a problem with using that?
Re: Ask HN: What charts javascript library to use?
#27We use the Google Charts API - it's free and very good. But I haven't seen many others comment about it. Is there a problem with using that?
Re: Ask HN: What charts javascript library to use?
#28We use Flot currently, but we're looking at purchasing a license for Emprise. Specifically, they offer candlestick charts, which are difficult to find elsewhere, yet absolutely critical in expressing the volatility of series data. http://www.ejschart.com/ IMO, candlestick charts are way underutilized. Take application response time graphs for example. Most reporting suites rely on moving averages. If your application…
Can you just have multiple lines for Nth percentile and/or min and max, rather than candlesticks? You'd want to bold or otherwise emphasize the mean or median line, I think, but it shouldn't be too hard to read, since the lines shouldn't cross.
Candlesticks are also useful for giving a good visual indicator of your interval, which is another area where line charts fall down. There is no visual clue given with a line chart that shows you whether you're looking at a 5 minute interval, 1 hour interval, or 1 year interval. The thickness of a candlestick relative to the x-axis (usually time) gives a strong visual clue about the interval.
Re: Ask HN: What charts javascript library to use?
#29Re: Ask HN: What charts javascript library to use?
#30Google's visualization apis are amazing, cant recommend it enough. The chart ones are nice but you then also have to wrap it yourself to generate the GET request appropriately to the data.
Especially when there are more functional, prettier alternatives