Graphviz: Difference between revisions
Jump to navigation
Jump to search
(→Order) |
(→Order) |
||
| Line 5: | Line 5: | ||
rankdir=TB; | rankdir=TB; | ||
A [label=" | A [label="收到下訂請求"]; | ||
B [label=" | B [label="檢查價格是否變動"]; | ||
C [label="檢查庫存是否充足"]; | |||
D [label="進入 JTR 專用流程"]; | |||
E [label="下訂"]; | |||
F [label="載入訂單"]; | |||
G [label="付款"]; | |||
H [label="完成訂單"]; | |||
A -> | A -> B -> C -> D -> E -> F -> G -> H; | ||
B -> | |||
</quickgv> | </quickgv> | ||
Revision as of 07:48, 18 March 2019
Beautify Edges
Order
GDS
Edge Attributes
| label | arrow | other |
|---|---|---|
|
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
| label | xlabel | headlabel | taillabel |
|---|---|---|---|
Difference between label and xlabel 1
Attribute label works not good as expected while using in subgraph.
| label | xlabel | label in subgraph | xlabel in subgraph |
|---|---|---|---|
Difference between label and xlabel 2 (constraint=false)
- The label is gone.
- Space of xlabel is not enough.
| label | |
|---|---|
| xlabel | |
| xlabel with minlen=4 |
|
| label in subgraph |
|
| xlabel in subgraph |
|
| xlabel in subgraph with minlen=4 |