Graphviz: Difference between revisions
Jump to navigation
Jump to search
(→Order) |
(→Order) |
||
| Line 9: | Line 9: | ||
A [label="收到下訂請求"]; | A [label="收到下訂請求"]; | ||
B [label="檢查價格與庫存"]; | B [label="檢查價格與庫存"]; | ||
C [label=" | C [label="排程更新價格與庫存"]; | ||
D1 [label="進入 JTR 專用流程"]; | D1 [label="進入 JTR 專用流程"]; | ||
D2 [label="進入 TKM 專用流程"]; | D2 [label="進入 TKM 專用流程"]; | ||
| Line 36: | Line 36: | ||
A -> B; | A -> B; | ||
B -> C; | B -> C [label="價格或庫存錯誤"]; | ||
B -> {D1 D2 D3}; | B -> {D1 D2 D3} [label="價格與庫存正確"]; | ||
C -> Z2; | C -> Z2; | ||
D1 -> E1 -> E2 -> E3 -> Z1; | D1 -> E1 -> E2 -> E3 -> Z1; | ||
Revision as of 08:01, 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 |