blob: 2adb472df33994c220abd7b6280e21467cb34ffe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
digraph test123 {
a -> b -> c;
a -> {x y};
b [shape=box];
c [label="hello\nworld",color=blue,fontsize=13,
fontname="Palatino-Italic",fontcolor=red,style=filled];
a -> z [label="hi", weight=100];
x -> z [label="multi-line\nlabel"];
edge [style=dashed,color=red];
b -> x;
{rank=same; b x}
}
|