The resulting size attribute in the .dot file produces seems to cause dot to clip the graph. For instance, graphmod will output something like:
digraph G {
size="6,4";
...
And after running a dot with this file I see only a part of the diagram. Removing the size attribute fixes this problem.
Two questions:
- How is this size attribute determined.
- Is there a way to prevent
graphmod from adding a size attribute?
Thanks!