I want to do some clustering of graphs on client side (graphs as in vertices and edges and clustering). Are there any good libraries out there?

Basic things like definitions of directed and undirected graphs, weak component clustering, edge betweenness clustering, HAC ...

link|improve this question

feedback

5 Answers

http://arborjs.org/ - Is this the kind of thing you're after?

d3 also looks really promising : http://mbostock.github.com/d3/

and this could be worth a look: http://www.readwriteweb.com/cloud/2011/04/5-graph-databases-to-consider.php

link|improve this answer
feedback

The JavaScript InvoVis Toolkit may be a good place to start. Check out its demos page for examples. It looks fairly extensible in order to add the features you're interested in, although I have not had an opportunity to play with it personally.

link|improve this answer
feedback

there are lots of good JS Graph Visualization libraries out there:

  • some of them are free (and great), like Dracula, JSXGraph or RGraph.

  • others, like MXGraph are commercial, but offers a free evaluation period.

  • there's also Arbor, with its elegant, nifty look and feel.

  • and as a really environment-agnostic plugin, there's JSPlumb.

hope this helps.

link|improve this answer
feedback

One option is paper.js

http://paperjs.org/examples/

Paper.js is not a lib, but more of an framework. It has great layer model (Like photoshop) with grouping and stuff, but you don't get any out of the box solutions with it, just primitives (shape[line, circle, triangle...], path, layer) and great Document Object Model to build upon.

Right approach with paper.js* is to write your own JS classes with your app logic in them, and just talk to paper as "provider of graphics/graphics api"

*in a same way that game developers write their own GAMES but they USE openGL OR directX as low level api..

link|improve this answer
feedback

Google has a fairly decent Javascript Chart API.

link|improve this answer
1  
Thanks but I am not looking for charting ... graph in a different context. – rxin Aug 4 '11 at 19:02
feedback

Your Answer

 
or
required, but never shown

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