I like to create a 3 column graph like this:
Code:
digraph g {
rankdir="LR";
node[shape = circle, fontsize=14];
fontsize=18;
labeljust="l";
{ rank=same;
}
edge[style=invis, fontsize=12];
subgraph clusterA {
a->b;
label="A";
}
subgraph clusterC {
e->f->g;
label="C";
}
subgraph clusterB {
c->d;
label="B";
}
}
I want to create a graph with the subgraphs A,C,B ordering. How can I add relations to this graph (ex. c->f; and b->g;) without the remaining the order of A--C--B?