我有一个像这样的图形文件:
digraph {
"Step1" -> "Step2" -> "Step3";
subgraph step2detail {
"Step2" -> "note1";
"Step2" -> "note2";
"Step2" -> "note3";
"Step2" -> "note4";
rankdir=TB
}
}
我希望子图 step2detail 挂在“Step2”的右侧。
现在它看起来像这样:
我希望 Step1、Step2 和 Step3 都在彼此垂直的下方和 1 列中。