up vote 170 down vote favorite
169
share [g+] share [fb]

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

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

locked by NullUserException Dec 9 '11 at 15:46

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. More info: FAQ.

closed as not constructive by casperOne Dec 9 '11 at 14:34

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

23 Answers

up vote 29 down vote accepted

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
feedback

I've just put together what you may be looking for: http://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
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  
Why the downvote? The server has just been down for a few hours... things happen. (anyways, thanks for all the upvotes!) – Johann Philipp Strathausen Sep 21 '11 at 13:47
show 1 more comment
feedback

Maybe try JavaScript Information Visualization Toolkit (JIT) or canviz

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

link
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
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
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
This is the new version of Protovis basically – Paul Sheldrake Oct 4 '11 at 11:31
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
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
feedback

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

link
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
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
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

It's commercial, but have you seen mxGraph?

link
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
feedback

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

link
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
2  
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

.

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
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
feedback

Javascript for displaying graphs (nodes + edges):

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

link
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
feedback

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

link
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
feedback

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

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

link
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
feedback

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

link
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
2  
This question is about graphs, not charts. – Ollie Glass Aug 19 '10 at 14:06
feedback

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