Gemeinsam zu mehr Effizienz in der Anwendungserstellung
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= | + | 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]; | ||
Zeile 30: | Zeile 30: | ||
graph[rankdir=LR]; | graph[rankdir=LR]; | ||
A [style=filled,color="#999999"]; | A [style=filled,color="#999999"]; | ||
- | B [shape=box, style= | + | 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]; |
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>