2015-03-26 22:49 GMT+01:00 Nick Dokos <ndokos@gmail.com>:
Cecil Westerhof <cldwesterhof@gmail.com> writes:

> ​In this way I do not get an empty column. It would be better when K
> would put between and below H and I, but I think I can live with it.​
>

Just put I after K and the subgraph.

​That works. It is even better when I put both H and I after it.

I also found a way to get resources at the correct place.

It know becomes:
    #+BEGIN_SRC dot :file test.png :cmdline -Kdot -Tpng
    graph {
      A
      B
      C
      utilities [label = "Utility's"]
   
      D
      E
      F [shape = rectangle]
   
   
      subgraph cluster_resources {
        color=blue
        resources [label = "Resources"]
      }
   
      G
      G_ [style="invisible"]
   
      K
      subgraph cluster_ta {
        color=blue
        {rank = same; L, M}
        L
        M
      }
      H
      I
   
      {rank = same; D,  E, F}
      {rank = same; G_, K}
   
   
      A -- F
      B -- F
      C -- F
      A -- D
      utilities -- resources [style="invisible"]
   
      E -- F
   
      F -- K
      F -- G
      F -- H
      F -- I
   
      G -- G_ [style="invisible"]
   
      K -- L
      K -- M
      L -- M
    }
    #+END_SRC

That looks very good indeed: I think I do not need to start working with ditaa. :-)

​Everyone thanks for the help.​


--
Cecil Westerhof