Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JavaScript library for dynamic network visualization? [closed]

What is a good JavaScript library for the visualization of time-evolving/dynamic graphs/networks?

My data is in the form of source -> destination at time triples like the following

A -> B at 100
B -> C at 101
A -> D at 104
C -> D at 105
...

On the screen I would like to see an animation of points connected by edges with edges flickering on and off as time evolves.

I'm also happy to contribute to an open source library that is almost there.

Clarifications:

  • By graph I mean a set of nodes connected by a set of edges, not a plot
  • This question is related to (but distinct from) the following question: Graph visualization library in JavaScript
like image 709
MRocklin Avatar asked Sep 26 '13 16:09

MRocklin


1 Answers

Vis.js, a browser based visualization library, is another option for you. Also, their public repo is active.

like image 176
Tarek Koudsi Avatar answered Oct 18 '22 14:10

Tarek Koudsi