Often, the default layout of graphs drawn by GraphViz in the dot language is a little "tight." With too little visual space, it's hard to put meaningful labels on edges and the graph can look cluttered.
How do I affect the vertical and horizontal spacing of GraphViz / dot graphs?
DEFAULT
I will start with a simple graph that is laid out by the dot engine in the default manner:
CHANGING HEIGHT
As you can see, the layout is quite tight. Notice that my ranks (rows) naturally go from top to bottom. I can affect the height of the graph by exploiting this and using the
ranksep
(rank separation) variable to explicitly set the space between the ranks:CHANGING WIDTH
Finally, we may want to widen the diagram. Here we use the
nodesep
variable to increase the space between the nodes (columns):