I need to display a graph with approximately 1000 nodes and edges. Nodes must be draggable and all must work in real time without waiting screens.
So, I already checked many js visualization frameworks and still haven't found a solution.
For example, I went over the "JavaScript InfoVis Toolkit" from the question:
What is the fastest, cleanest Javascript, graphics visualization tool? It hangs at 250 knots.
All frameworks work quite quickly, but only with 100-200 nodes. And at 500 knots and edges, they are generally excluded or hung.
So, the question arises: is there a js infrastructure that can work with 500-1k nodes / edges, or should I implement something using canvas / WebGL.
source
share