Difference between revisions of "Viz/graphviz.org+doc+info+attrs.html"

From VistApedia
Jump to: navigation, search
(Created page with " graph G { B \-\- A [taillabel = "tail"] } File:non-directed-graph.svg")
 
 
(4 intermediate revisions by the same user not shown)
Line 4: Line 4:
 
  }
 
  }
 
[[File:non-directed-graph.svg]]
 
[[File:non-directed-graph.svg]]
 +
 +
 +
digraph G {
 +
  graph [class="cats"];
 +
 +
  subgraph cluster_big {
 +
    graph [class="big_cats"];
 +
 +
    "Lion" [class="yellow social"];
 +
    "Snow Leopard" [class="white solitary"];
 +
  }
 +
}
 +
 +
[[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]]
 +
 +
 +
digraph G {
 +
  a -> c;
 +
  a -> b;
 +
  b -> c [constraint=false];
 +
}
 +
 +
[[File:triangle.svg]]

Latest revision as of 04:05, 5 February 2021

graph G {
  B \-\- A [taillabel = "tail"]
}

Non-directed-graph.svg


digraph G {
 graph [class="cats"];

 subgraph cluster_big {
   graph [class="big_cats"];

   "Lion" [class="yellow social"];
   "Snow Leopard" [class="white solitary"];
 }
}

Lions.svg

digraph G {

 a -> b [dir=both color="red:blue"]
 c -> d [dir=none color="green:red;0.25:blue"]

}

Multi-color edges.svg


digraph G {

 a -> c;
 a -> b;
 b -> c [constraint=false];

}

Triangle.svg