Live data from Hacker News

Show HN: JavaScript Graphing Library Comparison

jsgraphs.com

11–20 of 117 posts

Re: Show HN: JavaScript Graphing Library Comparison

#14
post #5

http://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.?

Re: Show HN: JavaScript Graphing Library Comparison

#16

What would be the most lightweight library if I only need a line graph compatible with most desktop and mobile browsers without any dependencies?

Write it yourself with the HTML5 canvas?

That's also the easiest way to get good performance for realtime, high-volume graphing.

Re: Show HN: JavaScript Graphing Library Comparison

#17

While 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

I don't have a lot of experience with it, but Bret Victor's http://worrydream.com/Tangle/ come to mind. Hope it helps!

Re: Show HN: JavaScript Graphing Library Comparison

#18
31 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 exploration.

Re: Show HN: JavaScript Graphing Library Comparison

#19

While 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

If you want to create class material, have a look at http://challengeu.com - they've built an entire service around providing a platform for teachers to share content. It's pretty cool! (Disclaimer: I used to work with them)

Re: Show HN: JavaScript Graphing Library Comparison

#20
post #5

http://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.?

If you want to make graphs like those on their page, it's fun. But once you want more it can be super annoying and hard to understand.
Post reply on HN