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"}
}
The graph below shows the idea of using clusters and hidden nodes for the alignment.
It gives the following result: