I'd still love to see a graphviz equivalent for JS that does layout for digraphs. This looks cool if you need undirected graphs, but doesn't seem to have any digraph support.
Sigma.js, a JavaScript library dedicated to graph drawing
21–30 of 38 posts
Re: Sigma.js, a JavaScript library dedicated to graph drawing
#22I'd still love to see a graphviz equivalent for JS that does layout for digraphs. This looks cool if you need undirected graphs, but doesn't seem to have any digraph support.
Re: Sigma.js, a JavaScript library dedicated to graph drawing
#23What are the strengths of this library, relative to D3? How does Sigma work differently?
Sigma is significantly faster than D3 for drawing large graphs; however, it's only able to draw graphs. D3 is a multipurpose library for many different kinds of visualizations.
Re: Sigma.js, a JavaScript library dedicated to graph drawing
#24Looks great, but I think it would benefit a lot from more examples. :)
You can check the examples in the repository: https://github.com/jacomyal/sigma.js/wiki#wiki-getting-start...
Re: Sigma.js, a JavaScript library dedicated to graph drawing
#25I'd still love to see a graphviz equivalent for JS that does layout for digraphs. This looks cool if you need undirected graphs, but doesn't seem to have any digraph support.
Here's an overview of the options for the layered digraph layout: http://www.gojs.net/latest/samples/ldLayout.html
The tree layout supports some fairly complicated tree structures, including ones that alternate or have different configurations for leaves: http://www.gojs.net/latest/samples/tLayout.html
Disclosure: I'm a developer of this library and it is not free.
Re: Sigma.js, a JavaScript library dedicated to graph drawing
#26Re: Sigma.js, a JavaScript library dedicated to graph drawing
#27Earlier quoted context omitted.
You can check the examples in the repository: https://github.com/jacomyal/sigma.js/wiki#wiki-getting-start...
I know it's pretty simple to run the examples yourself, but it would be nice if they were hosted on sigmajs.org. Great work, though. Pretty sure I'm going to try this today or tomorrow.
Re: Sigma.js, a JavaScript library dedicated to graph drawing
#28What are the strengths of this library, relative to D3? How does Sigma work differently?
In general, D3 looks to be a more general purpose graphing tool (also maps, multiple charting types, and graphs), while this is more single purpose.
Re: Sigma.js, a JavaScript library dedicated to graph drawing
#29Re: Sigma.js, a JavaScript library dedicated to graph drawing
#30I'd still love to see a graphviz equivalent for JS that does layout for digraphs. This looks cool if you need undirected graphs, but doesn't seem to have any digraph support.
The library that I make, GoJS ( http://www.gojs.net/ ) has a tree layout and layered digraph layout, both with many options. Here's an overview of the options for the layered digraph layout: http://www.gojs.net/latest/samples/ldLayout.html The tree layout supports some fairly complicated tree structures, including ones that alternate or have different configurations for leaves: http://www.gojs.net/latest/samples/tLay…
http://www.tensegrity-software.com/category/javascript-html5...