I am very new to Graphviz and trying to create an family tree. I have written this DOT format for my experimentation purposes.
digraph {
graph [splines=ortho]
edge [dir=none]
a [label="a"]
b [label="b"]
mid [shape=point]
{rank = same; a, b, mid}
a -> mid
mid -> b
c [shape=point]
cl [shape=point]
cr [shape=point]
{rank = same; c, cl, cr}
mid -> c
cl -> c
c -> cr
e [label="e"]
d [label="d"]
cl -> e
cr -> d
}
And this is how it comes out to be:
If you notice carefully, the edges to nodes 'e' & 'd' are not in middle. What would you write if you would want it in the middle? for example ,Can I use following formula?
splines=false/true