Drawing a Work Breakdown Structure (WBS) with dot

1.8k Views Asked by At

I want to draw a WBS with the dot language.

I have several problems:

  • Changing the rank direction (top to bottom for the first level, then kind of left to right for the other levels).
  • One edge that links more than two nodes

I tried:

digraph A {
    rankdir = TB;
    graph [splines=ortho]
    node [shape=box]
    edge [dir=none]

    node [label="1 Widget Mgmt. System"] 1
    node [label="1.1 Initiation"] 1.1
    node [label="1.1.1 Evaluation"] "1.1.1"
    node [label="1.2 Planning"] 1.2
    node [label="1.2.1"] "1.2.1"
    node [label="1.2.1.1"] "1.2.1.1"
    node [label="1.2.1.2"] "1.2.1.2"
    node [label="1.2.2"] "1.2.2"

    1 -> {1.1, 1.2}
    1.2 -> {"1.2.1", "1.2.2"}
    "1.2.1" -> {"1.2.1.1", "1.2.1.2"}
}

enter image description here

Here is the result I want : WBS example

1

There are 1 best solutions below

0
On

The graph below shows the idea of using clusters and hidden nodes for the alignment.

digraph A {
    newrank=true;
    graph [splines=ortho];
    node [shape=box];
    edge [dir=none];
    style=invis;//Comment this line to see the ideas of using clusters

    1 -> {11 12 13};

    subgraph cluster_11 {
        11 -> {111 112 113 114};
        {
            node [style=invis];
            edge [style=invis];
            subgraph cluster_C11_lvl_1 {
                C11->111->112->113->114;
            }
            {rank=same 11 C11}
        }
    }

    subgraph cluster_12 {
        12 -> {121 122};
        121 -> {1211 1212};
        122 -> {1221 1222};
        {
            node [style=invis];
            edge [style=invis];
            subgraph cluster_C12_lvl_1 {
                C12->121->122;
            }
            subgraph cluster_C12_lvl_2 {
                C121->1211->1212->C122->1221->1222;
            }
            {rank=same 12 C12}
            {rank=same 121 C121}
            {rank=same 122 C122}
        }
    }

    subgraph cluster_13 {
        13 -> {131 132 133}
        {
            node [style=invis];
            edge [style=invis];
            subgraph cluster_C13_lvl_1 {
                C13->131->132->133;
            }
            {rank=same 13 C13}
        }
    }
}

It gives the following result:

enter image description here