Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
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
5  
Why the hell is this question closed, what's so nonconstructive in looking for a graph visualization library? Voting for reopening. – vitaut Jan 3 at 18:53
1  
I wrote this question while stackoverflow was still in beta, and the consensus around what is and is not an "appropriate question" has morphed since that time. Somehow it avoided attracting the close-happy crowd until 2012. It does seem to have garnered lots of good answers though, so let the haters hate. – Chris Farmer Apr 10 at 15:20
show 1 more comment

28 Answers

up vote 257 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):

share|improve this answer
1  
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
3  
Arbor looks/feels awesome! Great list BTW – zcourts Apr 2 '12 at 20:40
1  
Great complication. Although it would be nice to separate non pure JavaScript libs. – techtonik Apr 19 '12 at 8:27
show 4 more comments

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.

share|improve this answer
This is the new version of Protovis basically – Paul Sheldrake Oct 4 '11 at 11:31
1  
Note that it doesn't work with IE<=8 – pkmiec Feb 21 at 11:49

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.

share|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 '12 at 20:37
6  
-1 - prefuse is Java, not JavaScript. Flare is Flash, also not JavaScript. JsVIS is buggy and outdated. – techtonik Apr 19 '12 at 7:54

Maybe try JavaScript Information Visualization Toolkit (JIT) or canviz

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

share|improve this answer
2  
Canviz requires you to have Graphviz running in the background to generate the node organization :( – Vjeux May 16 '11 at 16:01
you can use Canviz with viz.js or just viz.js alone, if you don't want to pre-generate the xdot – Janus Troelsen Mar 27 at 11:46

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

share|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
1  
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. – kbrock May 23 '12 at 12:28

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

share|improve this answer

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.

share|improve this answer
RaphaelJS seems good – Snake Eyes Apr 4 '12 at 8:41

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

share|improve this answer
1  
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 '12 at 18:54

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

share|improve this answer

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.

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

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.

share|improve this answer

It's commercial, but have you seen mxGraph?

share|improve this answer

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

share|improve this answer

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

share|improve this answer
2  
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
another dot renderer: dagre which is not dependant on GraphViz – Janus Troelsen Mar 27 at 11:29
you can also use GraphViz compiled to JavaScript with Emscripten: viz.js, but it's 1.5 MB: curl -Is -X HEAD mdaines.github.com/viz.js/viz.js | grep -i Content-Length gives 1364434 – Janus Troelsen Mar 27 at 11:33

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

share|improve this answer

Javascript for displaying graphs (nodes + edges):

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

share|improve this answer

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.

share|improve this answer

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

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

share|improve this answer

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

share|improve this answer
4  
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

.

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!).

share|improve this answer

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.

share|improve this answer

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. ;)

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

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

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

share|improve this answer
this looks briliant! – clime Jan 2 at 20:58

Have you considered Cytoscape.JS? Its design intent is to provide general-purpose graph visualization and manipulation using the new HTML5 Canvas.

share|improve this answer

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.

share|improve this answer
4  
We need to understand your needs before quoting a price. You lost me. – Vlad the Impala Aug 26 '12 at 19:27
I agree with Vlad; that vague, "well, how much you GOT?" approach to pricing that the FAQ implies is a real turn off. If the library is so inflexible that it needs to be tweaked before even letting the end-user have it, I question if it's really worth bothering with. – Cal Jacobson Nov 20 '12 at 17:21

In a commercial scenario, a serious contestant for sure is yFiles for HTML:

It offers:

  • Easy import of custom data (this interactive online demo seems to pretty much do exactly what the OP was looking for)
  • Interactive editing for creating and manipulating the diagrams through user gestures (see the more complete demo editor
  • A huge API for customizing each and every aspect of the library
  • Support for grouping and nesting (both interactive, as well as through the layout algorithms)
  • Does not depend on a specfic UI toolkit but supports integration into almost any Javascript existing toolkit (see the "toolkit" demos)
  • Automatic layout (various styles, like "hierarchic", "organic", "orthogonal", "tree", "circular", and more)
  • Automatic sophisticated edge routing (orthogonal and organic edge routing with obstacle avoidance)
  • Incremental and partial layout (adding and removing elements and only slightly or not at all changing the rest of the diagram)
  • Support for grouping and nesting (both interactive, as well as through the layout algorithms)
  • Uses HTML 5 technologies like SVG and Canvas and modern Javascript leveraging properties and other more recent JS features (but for the same reason will not run in IE versions 8 and lower).
  • Uses a modular API that can be loaded on-demand using AMD loaders

Full disclosure: I work for yWorks, but on Stackoverflow I do not represent my employer.

share|improve this answer

If you're looking to render a directed graph using d3.js but you want a Graphviz-style (i.e., layered, Sugayama) layout rather than a force-directed layout, try [Dagre] (https://github.com/cpettitt/dagre).

share|improve this answer

Just thought I may add in on this conversations. This site does a comparative analysis of the majority of the charting libraries discussed plus more. I found this conversation and this tool to be very helpful in finding out how to address my graphing needs.

http://socialcompare.com/en/comparison/javascript-graphs-and-charts-libraries

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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