graph/example/graphviz_test.dot
Jeremy Siek c73f757b5e new file
[SVN r9160]
2001-02-12 18:10:34 +00:00

21 lines
381 B
Plaintext

digraph G {
color=green;
graph [bgcolor=white]
node[shape=polygon,size=4,color=lightgrey];
edge[style=dashed color=blue] //default edge attributes
0 -> 1 -> 2 -> 3 [style=dotted]; //an edge
// 3 -> 1 [label=I] ;
// subgraph two { 4 -> 5 }
2 -> subgraph two
//1 [shape=circle, style=filled, label="Hello World\n From Rich"];
2 -> { 6 7 8 } -> 0
}