Changes between Initial Version and Version 1 of GraphvizExamples/OutputSvg
- Timestamp:
- 09/17/2006 02:33:26 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GraphvizExamples/OutputSvg
v1 v1 1 = Graphviz Example Output Svg = 2 {{{ 3 #!graphviz.dot/svg 4 digraph 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 }}}

