views:

370

answers:

2

Hi,

I intend to draw a directed graph (node-oriented). The nodes in the graph are dynamically generated. I am wondering if there's any good js library out there that solves my problem. Edges and weights need to be custom configured.

Thanks, Deepak.

+2  A: 

Have you looked into the RaphaelJS library?

Check out the awesome demos on the site. It's cross-browser, because it uses VML in IE and SVG in other browsers.

thomasrutter
+2  A: 

The JavaScript InfoVis Toolkit provides graph view that can be dynamically generated and updated using AJAX etc. It provides a number of views that are customizable.

Binary Nerd