digraph {
X -> Y [xlabel="80"]
Y -> Z [xlabel="60"]
Z -> X [xlabel="3"]
Y -> X [xlabel="1"]
}
我渲染上面使用的Graphviz點文件: dot -Tpng a.dot -o a.png
,但發現輸出圖像,如下圖所示,具有邊緣和箭頭與標籤重疊。 我已經嘗試了
如何定位子圖簇的標籤以顯示在其左側而不是居中? digraph mygraph {
test1;
subgraph cluster_mysubgraph {
label = "This text should be at the left of the subgraph - not centered!";
test2;
test3;