I've been looking for a chart library to display timeseries graphs and integrate well with react. The best one I found so far is react-d3. Unfortunately, it's still somewhat awkward.
Show HN: JavaScript Graphing Library Comparison
31–40 of 117 posts
Re: Show HN: JavaScript Graphing Library Comparison
#32Re: Show HN: JavaScript Graphing Library Comparison
#33This should really include http://ecomfe.github.io/echarts/index-en.html
Re: Show HN: JavaScript Graphing Library Comparison
#34I see none of them have the option "Large Data Set", I would think dc.js supports that with it's crossfilter support.
Re: Show HN: JavaScript Graphing Library Comparison
#3531 libraries, zero for "Large Data Set". That tells you everything you need to know about Javascript/browser graphics for data science. A. The DOM cannot handle as many nodes as are needed for large datasets and/or B. even with Canvas/webgl etc the browser platform itself chokes on dataset sizes much bigger than 1/2 gig (ie, "small" data). So Javascript is fantastic for explanatory graphics, but forget about explorat…
Re: Show HN: JavaScript Graphing Library Comparison
#3631 libraries, zero for "Large Data Set". That tells you everything you need to know about Javascript/browser graphics for data science. A. The DOM cannot handle as many nodes as are needed for large datasets and/or B. even with Canvas/webgl etc the browser platform itself chokes on dataset sizes much bigger than 1/2 gig (ie, "small" data). So Javascript is fantastic for explanatory graphics, but forget about explorat…
Humans typically can't comprehend 500 MiB of data in a chart well, so the large data set is mapped into a smaller data set for visualization.
Re: Show HN: JavaScript Graphing Library Comparison
#37What would be the most lightweight library if I only need a line graph compatible with most desktop and mobile browsers without any dependencies?
Re: Show HN: JavaScript Graphing Library Comparison
#38This should really include http://ecomfe.github.io/echarts/index-en.html
Re: Show HN: JavaScript Graphing Library Comparison
#39I think http://nvd3.org/ should be added. It is the only free/OSS that was able to do the complex combined graphs I needed for a recent project.
Re: Show HN: JavaScript Graphing Library Comparison
#40Given that, I had to do some hacky stuff upon every refresh. Instead of using destroy() on the canvas, I had to remove the Canvas DOM object itself, building it back up, and inserting it again. Because of this I am a bit skeptical about using ChartJS again, which is unfortunate because I do love their Charts. I feel like maybe SVG might be the better way to go for analytics.