Prevent overlapping records using graphviz and neato

Well, as with most questions…soon after I posted the I figured out the answer. I needed to add graph [overlap=false]; at the top of the file.

Do it like this:

graph g {
    overlap = false;

    node [shape=record,height=.1];
    /* ... */
}

Leave a Comment