Sigma.js, a JavaScript library dedicated to graph drawing
1–10 of 38 posts
Re: Sigma.js, a JavaScript library dedicated to graph drawing
#2Re: Sigma.js, a JavaScript library dedicated to graph drawing
#3Re: Sigma.js, a JavaScript library dedicated to graph drawing
#4What are the strengths of this library, relative to D3? How does Sigma work differently?
Re: Sigma.js, a JavaScript library dedicated to graph drawing
#5Re: Sigma.js, a JavaScript library dedicated to graph drawing
#6What are the strengths of this library, relative to D3? How does Sigma work differently?
For one thing, Sigma appears to have an ortho layout; D3 only does force-directed, right?
The main difference is that sigma only deals with graphs drawing, so it deals without effort with drag and drop (mouse or touch), scaling the graph to the screen, smooth zooming (with mousewheel or pinch)...
Re: Sigma.js, a JavaScript library dedicated to graph drawing
#7Earlier quoted context omitted.
For one thing, Sigma appears to have an ortho layout; D3 only does force-directed, right?
Actually, as with d3, you can develop your own network visualization layouts. The main difference is that sigma only deals with graphs drawing, so it deals without effort with drag and drop (mouse or touch), scaling the graph to the screen, smooth zooming (with mousewheel or pinch)...
Re: Sigma.js, a JavaScript library dedicated to graph drawing
#8What are the strengths of this library, relative to D3? How does Sigma work differently?
Re: Sigma.js, a JavaScript library dedicated to graph drawing
#9Earlier quoted context omitted.
Actually, as with d3, you can develop your own network visualization layouts. The main difference is that sigma only deals with graphs drawing, so it deals without effort with drag and drop (mouse or touch), scaling the graph to the screen, smooth zooming (with mousewheel or pinch)...
Aren't the layouts the Hard part?
Also, sigma does provide in a plugin a force-directed layout, ForceAtlas2, initially developed for Gephi.
Re: Sigma.js, a JavaScript library dedicated to graph drawing
#10Earlier quoted context omitted.
Actually, as with d3, you can develop your own network visualization layouts. The main difference is that sigma only deals with graphs drawing, so it deals without effort with drag and drop (mouse or touch), scaling the graph to the screen, smooth zooming (with mousewheel or pinch)...
Aren't the layouts the Hard part?