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.
我想在graphviz中使边缘重叠。但是graphviz似乎重新排列了叶子节点以避免重叠。我可以强制 graphviz 停止重新排列节点吗?
出品:
期望:
我正在使用 pygraphviz 创建树。
以下使用额外不可见边的方法非常适用于该图:
digraph g{ Act -> Bore; Act -> Cat; Bore -> Dog; Bore -> Egg [style=invis]; Bore -> Face; Cat -> Egg; Cat -> Face [style=invis]; Cat -> Goat; }