Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のアプリケーションでは、(同じグラフ上で) 2 つの関係を同時に表現する必要があります。1 つは対称で、もう 1 つはそうではありません。
ターゲット:
dotでこれを行う方法はありますか?
digraph { A; B; C subgraph Rel1 { edge [dir=none, color=red] A -> B -> C -> A } subgraph Rel2 { edge [color=blue] B -> C C -> A } }
dir=none無向グラフ接続にエッジ プロパティとして渡すことができます。
dir=none
digraph { A; B; C A -> B B -> C C -> A [dir=none] }