Wiki der Access Code Library

Gemeinsam zu mehr Effizienz in der Anwendungserstellung

Hilfe:GraphViz

Aus Access Code Library
(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
K
K
Zeile 20: Zeile 20:
  graph[rankdir=LR];
  graph[rankdir=LR];
  A [style=filled,color="#999999"];
  A [style=filled,color="#999999"];
-
  B [shape=box, style="lined"];
+
  B [shape=box, style="dotted"];
  C [fillcolor=yellow, style="rounded,filled", shape=box];
  C [fillcolor=yellow, style="rounded,filled", shape=box];
  D [fillcolor=lightblue, style="rounded,filled", shape=diamond];
  D [fillcolor=lightblue, style="rounded,filled", shape=diamond];
  E [shape=record, label="{ a | b | c }"];
  E [shape=record, label="{ a | b | c }"];
-
  F [shape=circle];  
+
  F [shape=circle];
  A->B; A->C; B->C; B->D; B->E; D->E; E->F; C->F;}
  A->B; A->C; B->C; B->D; B->E; D->E; E->F; C->F;}
<graphviz>
<graphviz>
-
digraph G {
+
digraph G {
-
graph[rankdir=LR];
+
graph[rankdir=LR];
-
A [style=filled,color="#999999"];
+
A [style=filled,color="#999999"];
-
B [shape=box, style="dotted"];
+
B [shape=box, style="dotted"];
-
C [fillcolor=yellow, style="rounded,filled", shape=box];
+
C [fillcolor=yellow, style="rounded,filled", shape=box];
-
D [fillcolor=lightblue, style="rounded,filled", shape=diamond];
+
D [fillcolor=lightblue, style="rounded,filled", shape=diamond];
-
E [shape=record, label="{ a | b | c }"];
+
E [shape=record, label="{ a | b | c }"];
-
F [shape=circle];
+
F [shape=circle];
-
A->B; A->C; B->C; B->D; B->E; D->E; E->F; C->F;}
+
A->B; A->C; B->C; B->D; B->E; D->E; E->F; C->F;}
</graphviz>
</graphviz>

Version vom 13:25, 4. Jul. 2010

GraphViz-Dokumentation: http://www.graphviz.org/Documentation.php

digraph G {A->B; A->C; B->C} <graphviz> digraph G {A->B; A->C; B->C} </graphviz>

digraph G {A -> B; A -> C; A -> D} <graphviz> digraph G {A -> B; A -> C; A -> D} </graphviz>

digraph G {graph[rankdir=LR]; A -> B; A -> C; A -> D} <graphviz> digraph G {graph[rankdir=LR]; A -> B; A -> C; A -> D} </graphviz>


digraph G {
graph[rankdir=LR];
A [style=filled,color="#999999"];
B [shape=box, style="dotted"];
C [fillcolor=yellow, style="rounded,filled", shape=box];
D [fillcolor=lightblue, style="rounded,filled", shape=diamond];
E [shape=record, label="{ a | b | c }"];
F [shape=circle];
A->B; A->C; B->C; B->D; B->E; D->E; E->F; C->F;}

<graphviz>

digraph G {
graph[rankdir=LR];
A [style=filled,color="#999999"];
B [shape=box, style="dotted"];
C [fillcolor=yellow, style="rounded,filled", shape=box];
D [fillcolor=lightblue, style="rounded,filled", shape=diamond];
E [shape=record, label="{ a | b | c }"];
F [shape=circle];
A->B; A->C; B->C; B->D; B->E; D->E; E->F; C->F;}

</graphviz>