graphviz with combined edges -


i'm looking way achieve in graphviz:

          --- node b            | node ---           |           --- node c 

another example (at bottom): http://machining.grundfos.de/media/60727/grundfos_pumpenhandbuch.pdf#23

is there way of doing graphviz?

so far got orthogonal edges:

digraph g {  graph [rankdir=lr,splines=ortho,concentrate=true];  node [shape=box,];  edge [dir=none];   -> b;  -> c; } 

you must introduce intermediate (eventually hidden) nodes act split points. instance:

digraph g {  graph [rankdir=lr,splines=ortho,concentrate=true];  node [shape=box,];  edge [dir=none];  [shape=point];  -> -> b;  -> -> c; } 

yields

enter image description here


Comments

Popular posts from this blog

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -

google shop client API returns 400 bad request error while adding an item -