Placing clusters on the same rank in Graphviz

后端 未结 2 1782
慢半拍i
慢半拍i 2021-02-02 07:00

I would like these two nodes to appear on the same level:

\"enter

digraph          


        
2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-02 07:57

    You may simply modify the edge between the routers:

    router1 -> router2[constraint=false];
    

    constraint indicates whether the edge should be used in the ranking of the nodes.

提交回复
热议问题