I'm using Debian Jessie. I've been working on dot today and I haven't been able to order anything - even using the invisible nodes trick, rank=max, rank=same, etc. For example, this example:
digraph hierarchy {
nodesep=1.0 // increases the separation between nodes
node [color=Red,fontname=Courier,shape=box] //All nodes will this shape and colour
edge [color=Blue, style=dashed] //All the lines look like this
Headteacher->{Deputy1 Deputy2 BusinessManager}
Deputy1->{Teacher1 Teacher2}
BusinessManager->ITManager
{rank=same;ITManager Teacher1 Teacher2} // Put them on the same level
}
from here just isn't ordering for me -regardless of which engine I choose, e.g., dot -Kfdp, fdp -Kfdp, neato, etc
.
Everything starts with the Headteacher in the middle - even with
Headteacher [label="head teacher", rank=max]
Similarly, the ordering example here fails as well.
I just discovered that though my local attempts fail, eveything works as expected on GraphvizFiddle. ?