Cluster Location In Graphviz Python
Is there a way to make this graphviz output looks like I am using subgraphs, to merge the 4 clusters with the tree graph
Solution 1:
Googling found an answer: http://www.graphviz.org/content/subgraph-different-rankdir
Essentially, subgraphs can't have their own rankdir, but you can get the effect you want by placing invisible links between the top-level objects, causing them to be laid out top-to-bottom.
Post a Comment for "Cluster Location In Graphviz Python"