Show HN: JavaScript Graphing Library Comparison
111–117 of 117 posts
Re: Show HN: JavaScript Graphing Library Comparison
#112Can you add a `None` filter in the Dependancies section? After a quick look it seems like there a few that would fall into this option.
I like that idea, thanks!
Re: Show HN: JavaScript Graphing Library Comparison
#113http://thenextweb.com/dd/2015/04/21/the-14-best-data-visuali...
Re: Show HN: JavaScript Graphing Library Comparison
#114What are the advantages of SVG or Canvas in that use case? Which one (SVG, Canvas) is principle faster on current browser with thousands of data points?
Canvas is faster, as it basically is just a bitmap, while an SVG chart with a million points would correspond to at least a million DOM elements.
Re: Show HN: JavaScript Graphing Library Comparison
#115Very nice work. How about a graph type "arrow diagram" as a subtype of "drawing"? One thing I'm missing a bit in the list is GraphViz style diagrams.
Re: Show HN: JavaScript Graphing Library Comparison
#116Good stuff! What about D3? http://d3js.org/
I would consider D3 not to be a graph making library, but more a Data Frame & Document Object Model data binding library with a collection of stats functions.
Re: Show HN: JavaScript Graphing Library Comparison
#117While 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