Hi. I have a data structure that represents a directed graph, and I want to render that dynamically on an HTML page. Does anyone know of any javascript code that can do a reasonable job with graph layout? These graphs will usually be just a few nodes, maybe ten at the very upper end, so my guess is that performance isn't going to be a big deal. Ideally, I'd like to be able to hook it in with jQuery so that users can tweak the layout manually by dragging the nodes around.


Edit: Google's Visualization API seems to be more "graphs as charts" oriented than "graphs as nodes" oriented. I didn't see any node-oriented visualizations already built there, anyway. Do you know that one exists?

link|improve this question

80% accept rate
Thanks for the good question. Anyone have already use one of those library with "grouping" feature, eg. for representing computer network grouped by room location ? Looks like this is not so easy... – Stéphane Sep 6 '11 at 13:37
hey @Stéphane the dracula library (see answer #2) does not have explicit grouping, but since it is force (repelling-attraction) based, the nodes group automatically - kind of. See this website for a demo: lackoftalent.org/michael – Johann Philipp Strathausen Nov 16 '11 at 15:40
look at this question: stackoverflow.com/questions/8308516/multigraphs-with-javascript – linker Nov 29 '11 at 9:44
feedback

26 Answers

up vote 119 down vote accepted

I've just put together what you may be looking for: http://www.graphdracula.net

It's JavaScript with directed graph layouting, SVG and you can even drag the nodes around. Still needs some tweaking, but is totally usable. You create nodes and edges easily with JavaScript code like this:

var g = new Graph();
g.addEdge("strawberry", "cherry");
g.addEdge("cherry", "apple");
g.addEdge("id34", "cherry");

I used the previously mentioned Raphael JS library (the graffle example) plus some code for a force based graph layout algorithm I found on the net (everything open source, MIT license). If you have any remarks or need a certain feature, I may implement it, just ask!

Edit: You may want to have a look at other projects, too! Here's a list of similar projects (some have been already mentioned here):

link|improve this answer
very nice; does it allow for directed edges? – Alison Oct 18 '10 at 8:54
Yes, directed edges are possible! Use g.addEdge("cherry", "apple", {"directed":true}); – Johann Philipp Strathausen Oct 19 '10 at 17:29
Very awesome, looks great – Gordon Dec 10 '10 at 17:43
Now @ graphdracula.net – JRG Jun 29 '11 at 15:15
1  
Arbor looks/feels awesome! Great list BTW – zcourts Apr 2 at 20:40
show 4 more comments
feedback

JsVIS is pretty nice, but a little slow with larger graphs. If yours is small it should work well. My favorite is prefuse which apparently now has a Flex front-end now called flare which could be controlled with JavaScript.

link|improve this answer
These libraries seem a bit old at this point, what are people using today? I'm specifically looking into plotting independent x-y series. – b.long Apr 18 at 20:37
3  
-1 - prefuse is Java, not JavaScript. Flare is Flash, also not JavaScript. JsVIS is buggy and outdated. – techtonik Apr 19 at 7:54
feedback

Have a look at D3.js. Is a small, free JavaScript library for manipulating documents based on data.

D3 allows you to bind arbitrary data to a Document Object Model (DOM), and then apply data-driven transformations to the document. As a trivial example, you can use D3 to generate a basic HTML table from an array of numbers. Or, use the same data to create an interactive SVG bar chart with smooth transitions and interaction.

link|improve this answer
This is the new version of Protovis basically – Paul Sheldrake Oct 4 '11 at 11:31
feedback

Maybe try JavaScript Information Visualization Toolkit (JIT) or canviz

But actually, I am interested in that too. Does noone know something better?

link|improve this answer
1  
Canviz requires you to have Graphviz running in the background to generate the node organization :( – Vjeux May 16 '11 at 16:01
feedback

Protoviz is the answer to your problems http://vis.stanford.edu/protovis/

link|improve this answer
Protovis is great for statistical graphics. – medriscoll Jun 7 '10 at 2:22
1  
Protovis is cool. It's by Jeffrey Heer, who also helped create Flare and Prefuse. Flare also works nicely, if you're OK with Flash. Specifically for graph visualization, look at Cytoscape web (cytoscapeweb.cytoscape.org), based on Flare. – cbare Jul 14 '10 at 3:15
as mentioned above, d3js is the newer version of this library. Written by the same author. There are some use cases where protoviz still shines over d3. – Keenan Brock May 23 at 12:28
feedback

I think Flare is definitely worth checking out. It supports both "graphs as charts" and "graphs as nodes".

Have a look at the Layouts->Force demo, which has a tree of nodes that can be dragged about: http://flare.prefuse.org/demo

link|improve this answer
feedback

Have you tried Raphael.js?

It seems to do what you need:

http://raphaeljs.com

Here's a 'draggable' graph:

http://raphaeljs.com/graffle.html

If your concern is specifically with layout, then you need to do some more research.

link|improve this answer
RaphaelJS seems good – Michael Swan Apr 4 at 8:41
feedback

Check out the awesome arbor.js, built on top of JQuery.

link|improve this answer
I've looked into this one. Unfortunately it doesn't support any (current) version of IE. – cagreen Jul 12 '11 at 4:41
1  
@cagreen - if it doesn't piss off the ie user too much, require the google chrome frame plugin. – sbartell Aug 3 '11 at 5:31
You need to write your own rendering code from the ground-up, making it a deal breaker. Arbor is really just a force-directed layout algorithm. – maxkfranz May 2 at 18:54
feedback

You can try Cytoscape Web:

http://cytoscapeweb.cytoscape.org/

This application supports subset of Cytoscape functions (Java application). Data roundtrip between web app and desktop version is easier than other platforms.

link|improve this answer
feedback

Since you mention jQuery: flot is a jQuery plugin that generates graphs with pure JS. I haven't used it myself but it looks pretty neat at first sight.

link|improve this answer
2  
+1 - flot looks quite nice! – Optimal Solutions Feb 4 '09 at 3:41
16  
Very nice, but not a graph. – Chris Farmer Mar 26 '09 at 17:56
feedback

Disclaimer: I'm a developer of Cytoscape Web

Recently, prerelease builds of Cytoscape Web 2 have been made available. Cytoscape Web 2 is a HTML5 graph visualisation library. The API is sophisticated and follows jQuery conventions, including

  • selectors for querying and filtering (cy.elements("node[weight >= 50].someClass") does much as you would expect),
  • chaining (e.g. cy.nodes().unselect().trigger("mycustomevent")),
  • jQuery-like functions for binding to events,
  • elements as collections (like jQuery has collections of HTMLDomElements),
  • extensibility (can add custom layouts, UI, core & collection functions, and so on),
  • and more.

If you're thinking about building a serious webapp with graphs, you should at least consider Cytoscape Web 2. It's free and open-source:

https://github.com/cytoscape/cytoscapeweb

link|improve this answer
feedback

It's commercial, but have you seen mxGraph?

link|improve this answer
feedback

JSDot - lightweight pure JavaScript graph visualization/editor/embeddable widget based on SVG

link|improve this answer
1  
JSDot can only DRAW Graphviz DOT output. It relies on GraphViz having done the layout and path planning. It requires the X/Y/W/H of each element it will draw, at least according to the slides and examples on their web site. – Armentage Jun 16 '11 at 13:10
feedback

I like jsplumb the most

link|improve this answer
feedback

Maybe you can use http://ejohn.org/blog/processingjs/ a port to javascript of Processing Java library.( http://processing.org/ )

Not purely javascript, but have you considered flare? http://flare.prefuse.org In addition to graphML : http://graphml.graphdrawing.org/ you can read the graph nodes, structure and orientation from the xml file and then display it using flare (flash).

Check this forum for some examples: http://goosebumps4all.net/34all/bb/forumdisplay.php?fid=28

link|improve this answer
feedback

I made beautiful work with js-graph-it : it also allows dragging.

link|improve this answer
feedback

.

Try PlotKit, which is built on top of the excellent MochiKit JavaScript toolkit (it would be compatible with jQuery, though you might want to drop jQuery after you see how beautiful MochiKit is!).

link|improve this answer
feedback

Javascript for displaying graphs (nodes + edges):

http://snipplr.com/view/1950/graph-javascript-framework-version-001/

link|improve this answer
feedback

ProtoVis has some pretty nice features: http://vis.stanford.edu/protovis/

There is an example of a Force-Directed Graph listed in the examples page.

link|improve this answer
feedback

Google has its Visualization API for use in JavaScript, which may of some use to you.

http://code.google.com/apis/visualization/

link|improve this answer
feedback

If you are on the server side, look at the Bell Labs graph visualization toolkit. It's free and can dynamically generate what you want. Perhaps you can REST-like send your data from the browser to the server for rendering?

http://www.graphviz.org

link|improve this answer
3  
Non-dynamic, non-interactive. GraphViz is awesome, but this is the default state that this question is trying to move away from. – Gregg Lind Nov 10 '10 at 1:45
feedback

As guruz mentioned, the JIT has several lovely graph/tree layouts, including quite appealing RGraph and HyperTree visualizations. I'd post a link, but as a n00b I'm restricted to one link per answer.

Also, I've just put up a super simple SVG-based implementation at github (no dependencies, ~125 LOC) that should work well enough for small graphs displayed in modern browsers.

link|improve this answer
feedback

I haven't used it myself, but dygraphs also looks promising.

link|improve this answer
feedback

Since noone else posted it yet, I want to suggest jqPlot to make this nice overview more complete. It's Open Source and produces stylish looking graphs. I like the interactive zoom. ;)

link|improve this answer
2  
This question is about graphs, not charts. – Ollie Glass Aug 19 '10 at 14:06
feedback

If commercial libraries are OK for you, KeyLines does this on all browsers (disclaimer: I'm an author of it).

If it must be open source then D3.js is the best of these IMHO.

link|improve this answer
feedback

You may like sigma.js: http://sigmajs.org/

It is a lightweight, open source javascript library for display large graphs efficiently on the Web.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.