D3-dag – Layout algorithms for visualizing directed acylic graphs
1–10 of 44 posts
Re: D3-dag – Layout algorithms for visualizing directed acylic graphs
#2Re: D3-dag – Layout algorithms for visualizing directed acylic graphs
#3Re: D3-dag – Layout algorithms for visualizing directed acylic graphs
#4I recently wanted to render some graphs and found there are a confusing variety of options. In particular https://github.com/dagrejs/dagre/wiki seems to be layout focused and then plugs into a bunch of other systems including d3. It would be nice if one of these tools was able to describe itself in contrast to the others.
I wonder if some of the variety you're seeing comes from different approaches people take to keeping the problem tractable.
Re: D3-dag – Layout algorithms for visualizing directed acylic graphs
#5I recently wanted to render some graphs and found there are a confusing variety of options. In particular https://github.com/dagrejs/dagre/wiki seems to be layout focused and then plugs into a bunch of other systems including d3. It would be nice if one of these tools was able to describe itself in contrast to the others.
Re: D3-dag – Layout algorithms for visualizing directed acylic graphs
#6Re: D3-dag – Layout algorithms for visualizing directed acylic graphs
#7I've always found it incredibly challenging to layout control-flow graphs (used a lot by compilers), so nice that this exists!
Re: D3-dag – Layout algorithms for visualizing directed acylic graphs
#8Re: D3-dag – Layout algorithms for visualizing directed acylic graphs
#9I've always found it incredibly challenging to layout control-flow graphs (used a lot by compilers), so nice that this exists!
I don’t understand that remark. This library is for directed acyclic graphs. Control flow graphs are directed, but generally have cycles.