graphviz - How can I combine edges in an ortho graph? -
i'm using splines=ortho
, hoping edges collapse together. illustrate, want accomplish this:
i tried this:
digraph g { splines=ortho; edge [dir=none]; node [shape=diamond, label="", height=0.1, width=0.1]; start -> [weight=10]; start -> b; start -> c; start -> d; start -> e; }
but ends looking this:
any clue on how can make edges overlap each other?
Comments
Post a Comment