TODO: in a graph with top-down rank, specify that node "START" should be put at the top.
The graph is large (100 nodes) and there are some subgraphs (around 10). Before using subgraphs, the "START" node is at placed at top. With subgraphs, the "START" node is placed somewhere around the center.
I tried to use
Start [root=true]
Start [rank=min]
Start [rank=1]
root=Start;
{rank=min; Start;}
But none of them worked. What's your ideas (i do not want to use 'pos', 'cause the graph size is not specific)?
Thanks!