1
は、問題は、私は中央の箱の周りの矢印の方向を制御する方法を見つけることができないということですGraphvizのコントロールGraphvizの矢印方向
digraph UDEF0 {
"Plan New Information Program" [shape=box]
"Issues" [shape=none]
"Operation Data" [shape=none]
"Program Charter" [shape=none]
"Program Team" [shape=none]
"Program Plan" [shape=none]
"Issues" -> "Plan New Information Program"
"Operation Data" -> "Plan New Information Program"
"Program Charter" -> "Plan New Information Program"
"Program Team" -> "Plan New Information Program"
"Plan New Information Program" -> "Program Plan"
}
使用IDEF0図の例を描画します。
私は、目に見えない南、北、東、西のノードで作られた隠れた「フレーム」を使って矢印を接続しようとしました。残念ながら、「フレーム」は、それが空である場合にのみ、うまく機能し、私はそれに私の「ペイロード」ノードを接続する場合、構造が壊れる:
digraph UDEF0 {
rankdir=LR
"Plan New Information Program" [shape=box]
"Issues" [shape=none]
"Operation Data" [shape=none]
"Program Charter" [shape=none]
"Program Team" [shape=none]
"Program Plan" [shape=none]
"Program Plan" [shape=none]
"West" [shape=none]
"North" [shape=none]
"South" [shape=none]
"East" [shape=none]
"West" -> "North" -> "East"
"West" -> "South" -> "East"
"West" -> "Issues" -> "Plan New Information Program"
"West" -> "Operation Data" -> "Plan New Information Program"
"North" -> "Program Charter" -> "Plan New Information Program"
"South" -> "Program Team" -> "Plan New Information Program"
"East" -> "Plan New Information Program" -> "Program Plan"
}
この図のスタイルを実装する任意の正しい方法は何ですか? shape = record
を使用して