in reply to Re: Visualizing a dependency graph in a web page
in thread Visualizing a dependency graph in a web page

> http://viz-js.com

Wow, that's actually pretty cool. =)

Thanks a lot, will try it out!

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery

  • Comment on Re^2: Visualizing a dependency graph in a web page

Replies are listed 'Best First'.
Re^3: Visualizing a dependency graph in a web page
by LanX (Saint) on Apr 03, 2022 at 13:17 UTC
    For the records, this is an decent solution for the case described in the OP

    http://viz-js.com

    # http://www.graphviz.org/content/cluster digraph G { node [shape=box] { rank = same j4; j3; } j1 -> j4; j2 -> j4; j2 -> j5; j7 -> j5; j3 -> j6; j4 -> j6; j5 -> j6 }

    Cheers Rolf
    (addicted to the Perl Programming Language :)
    Wikisyntax for the Monastery