What would be the most lightweight library if I only need a line graph compatible with most desktop and mobile browsers without any dependencies?
Show HN: JavaScript Graphing Library Comparison
11–20 of 117 posts
Re: Show HN: JavaScript Graphing Library Comparison
#12Good stuff! What about D3? http://d3js.org/
Re: Show HN: JavaScript Graphing Library Comparison
#13Re: Show HN: JavaScript Graphing Library Comparison
#14http://dimplejs.org/ is another D3 based charting library.
Re: Show HN: JavaScript Graphing Library Comparison
#15Re: Show HN: JavaScript Graphing Library Comparison
#16What would be the most lightweight library if I only need a line graph compatible with most desktop and mobile browsers without any dependencies?
That's also the easiest way to get good performance for realtime, high-volume graphing.
Re: Show HN: JavaScript Graphing Library Comparison
#17While we're on the topic, I'm beginning with js with a goal to create some materials for maths classes. Which library would let me do, for example, graphs of quadratic, cubic functions AND possibly drag/move the line to see how the equation translates? Thank you
Re: Show HN: JavaScript Graphing Library Comparison
#18That 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 exploration.
Re: Show HN: JavaScript Graphing Library Comparison
#19While we're on the topic, I'm beginning with js with a goal to create some materials for maths classes. Which library would let me do, for example, graphs of quadratic, cubic functions AND possibly drag/move the line to see how the equation translates? Thank you
Re: Show HN: JavaScript Graphing Library Comparison
#20http://dimplejs.org/ is another D3 based charting library.
I've just looked at dimple. It looks quite a bit simpler than implementing d3, I will have to play around with it, but from your experience how would you rate it in terms of ease of use, learning curve, performance, etc.?