Heylo,我只是想看看像我在下图中模拟的边缘(蓝色/青色)是否可能......我尝试了很多不同的边缘属性组合,我真的很挣扎让边缘看起来干净和有条理,而不是走最短的路径。
我的代码如下,我不希望子图从它们当前的位置移动,所以我知道边缘需要一个“约束=假”。
digraph G
{
graph [compound = true];
splines = false;
node [style = bold, shape = record, fontcolor = magenta];
subgraph cluster0
{
style = bold; label = “Mac”;
edge [style = invisible, arrowhead = none];
“Finder” -> “Terminal” -> “Safari”;
}
subgraph cluster1
{
style = bold; label = “Windows”;
node_1 [label = “<f0> Start|<f1> Command Prompt”];
}
subgraph cluster2
{
style = bold; label = “Linux”;
node_2 [label = “<f0> Start|<f1> Konsole”];
}
}
先感谢您!