Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Javascript Graph visualization toolkit with high performance (500-1000 nodes)

I need to display graph with about 1000 nodes and edges. Nodes should be dragable and all should works in realtime without waiting screens.

So, I've already checked a lot of js graph visualization frameworks and still cant find solution.

For example I've cheched "JavaScript InfoVis Toolkit" from the question: What's the fastest, pure Javascript, Graph visualization toolkit? It hangs up on 250 nodes.

All of frameworks works pretty fast but only with 100-200 nodes. And on 500 nodes and edges they throw exceptions or hanging up at all.

So, the question is: Is there a js framework that could work with 500-1k of nodes/edges, or I should implement something by myself with using canvas/WebGL.

like image 440
Dmitry Zaets Avatar asked Aug 31 '12 08:08

Dmitry Zaets


1 Answers

Did you try D3? http://d3js.org/

like image 171
gmaliar Avatar answered Nov 12 '22 23:11

gmaliar