graphviz - How can I combine edges in an ortho graph? -


i'm using splines=ortho , hoping edges collapse together. illustrate, want accomplish this:

enter image description here

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:

enter image description here

any clue on how can make edges overlap each other?


Comments

Popular posts from this blog

java - SSE Emitter : Manage timeouts and complete() -

jquery - uncaught exception: DataTables Editor - remote hosting of code not allowed -

java - How to resolve error - package com.squareup.okhttp3 doesn't exist? -