Graphviz: Difference between revisions

From Fundamental Ramen
Jump to navigation Jump to search
Line 70: Line 70:
<quickgv name="G2" theme="warm">
<quickgv name="G2" theme="warm">
rankdir=TB;
rankdir=TB;
A -> B [label="1"];
A -> B [label="label"];
</quickgv>
</quickgv>
| valign="top" |
| valign="top" |
<quickgv name="G3" theme="warm">
<quickgv name="G3" theme="warm">
rankdir=TB;
rankdir=TB;
A -> B [xlabel="1"];
A -> B [xlabel="xlabel"];
</quickgv>
</quickgv>
| valign="top" |
| valign="top" |
Line 81: Line 81:
rankdir=TB;
rankdir=TB;
subgraph cluster_subg {
subgraph cluster_subg {
   A -> B [label="1"];
   A -> B [label="label"];
}
}
</quickgv>
</quickgv>
Line 88: Line 88:
rankdir=TB;
rankdir=TB;
subgraph cluster_subg {
subgraph cluster_subg {
   A -> B [xlabel="1"];
   A -> B [xlabel="xlabel"];
}
}
</quickgv>
</quickgv>
|}
|}

Revision as of 03:08, 26 February 2019

Beautify Edges

Edge Attributes

label arrow other
  • URL labelURL headURL tailURL edgeURL
  • lp head_lp tail_lp xlp
  • headclip tailclip
  • href headhref tailhref edgehref labelhref
  • label headlabel taillabel xlabel
  • headport tailport
  • headtarget tailtarget edgetarget labeltarget
  • headtooltip tailtooltip edgetooltip labeltooltip
  • label_scheme
  • labelangle
  • labeldistance
  • labelfloat
  • labelfontcolor
  • labelfontname
  • labelfontsize

arrowhead arrowsize arrowtail color colorscheme comment constraint decorate dir fillcolor fontcolor fontname fontsize id len lhead ltail minlen nojustify penwidth pos samehead sametail showboxes target tooltip weight

Edge label

All kinds of labels

Difference between label and xlabel

label xlabel label in subgraph xlabel in subgraph