Social network graph using javascript library

I intend to draw a directed graph (node-oriented). Nodes on the chart are dynamically generated. I am wondering if there is a good js library there that solves my problem. Edges and weights must be customized.

Thanks, Deepak.

+7
javascript graph social-networking
source share
6 answers

The JavaScript InfoVis Toolkit provides a graphical representation that can be dynamically generated and updated using AJAX, etc. It provides several views that you can customize.

+5
source share

From my experience, D3.js is the most flexible

d3js.org

also have new sigmajs libaray

http://sigmajs.org/

+4
source share

Have you looked at the RaphaelJS library ?

Watch awesome demos on the site. This is a cross browser because it uses VML in IE and SVG in other browsers.

+2
source share

You can try arborjs.org .

+2
source share

The commercially licensed KeyLines will do the job - also a cross browser supported by both older IEs and newer browsers (including iPads). Disclaimer: I will help develop it ,-)

+2
source share

Cytoscape Web JS will do everything you need.

Check out the github repository here http://cytoscape.github.com/cytoscape.js/ and you can play with some demos here http://cytoscape.github.com/cytoscapeweb/

+2
source share

All Articles