Home › Dot language › Diagram perserved while adding annotations
Diagram perserved while adding annotations
January 30, 2010 - 7:13pm — Xuan Ngo
digraph simple_hierarchy {
a->b->c;
b->d;
a->e->f;
e->g;
// Drawing edges while preserving the tree layout with constraint=none// Very good for annotations.edge[color=red,arrowhead=none,constraint=none];
b->f
b->g
d->f
g->c
}