Difference between revisions of "Viz/graphviz.org+doc+info+attrs.html"
From VistApedia
DavidWhitten (talk | contribs) |
DavidWhitten (talk | contribs) |
||
Line 18: | Line 18: | ||
[[File:Lions.svg]] | [[File:Lions.svg]] | ||
+ | |||
+ | digraph G { | ||
+ | a -> b [dir=both color="red:blue"] | ||
+ | c -> d [dir=none color="green:red;0.25:blue"] | ||
+ | } | ||
+ | |||
+ | [[File:multi-color_edges.svg]] |
Revision as of 03:58, 5 February 2021
graph G { B \-\- A [taillabel = "tail"] }
digraph G { graph [class="cats"];
subgraph cluster_big { graph [class="big_cats"];
"Lion" [class="yellow social"]; "Snow Leopard" [class="white solitary"]; } }
digraph G {
a -> b [dir=both color="red:blue"] c -> d [dir=none color="green:red;0.25:blue"]
}