source: graphvizplugin/branches/1.0/examples/GraphvizExamples%2FOutputGif

Last change on this file was 193, checked in by Peter Kropf, 18 years ago

GraphvizPlugin:

merged branches/0.9/v0.4 changes r182:192 into the trunk (0.9).

File size: 490 bytes
Line 
1= Graphviz Example Output Gif =
2{{{
3#!graphviz.dot/gif
4digraph G {
5
6    subgraph cluster_0 {
7        style=filled;
8        color=lightgrey;
9        node [style=filled,color=white];
10        a0 -> a1 -> a2 -> a3;
11        label = "process #1";
12    }
13
14    subgraph cluster_1 {
15        node [style=filled];
16        b0 -> b1 -> b2 -> b3;
17        label = "process #2";
18        color=red
19    }
20    start -> a0;
21    start -> b0;
22    a1 -> b3;
23    b2 -> a3;
24    a3 -> a0;
25    a3 -> end;
26    b3 -> end;
27
28    start [shape=Mdiamond];
29    end [shape=Msquare];
30}
31}}}
Note: See TracBrowser for help on using the repository browser.