75
回編集
Flying3103 (トーク | 投稿記録) (→単純な例) |
Flying3103 (トーク | 投稿記録) |
||
36行目: | 36行目: | ||
} | } | ||
</graphviz> | |||
</syntaxhighlight> | |||
===色を付ける==== | |||
<graphviz> | |||
digraph G { | |||
1 -> 2; | |||
1 -> 3 [color="blue"]; | |||
3 [style=filled, fontcolor="green" color = "red", fillcolor="yellow"]; | |||
2 -> 4; | |||
2 -> 5 [color="blue"]; | |||
5 [style=filled, fontcolor="green" color = "red", fillcolor="yellow"]; | |||
} | |||
</graphviz> | |||
<syntaxhighlight lang="dot"> | |||
<graphviz> | |||
digraph G { | |||
1 -> 2; | |||
1 -> 3 [color="blue"]; | |||
3 [style=filled, fontcolor="green" color = "red", fillcolor="yellow"]; | |||
2 -> 4; | |||
2 -> 5 [color="blue"]; | |||
5 [style=filled, fontcolor="green" color = "red", fillcolor="yellow"]; | |||
} | |||
</graphviz> | </graphviz> | ||
</syntaxhighlight> | </syntaxhighlight> |