beautify

Whether to draw leaf nodes uniformly in a circle around the root node in sfdp.

type: bool, default: false

Whether to try to draw leaf nodes uniformly on a circle around the root node.

Prior to Graphviz 8.0.1, this is affected by Issue 2283: rendering one fewer sector than necessary, overlapping the first and last nodes.

Examples:

Beautify
digraph G {
    layout="sfdp"
    beautify=true

    N0 -> {N1; N2; N3; N4; N5; N6}
}
No beautify
digraph G {
    layout="sfdp"
    beautify=false

    N0 -> {N1; N2; N3; N4; N5; N6}
}
Valid on:
  • Graphs

Note: sfdp only.

Search the Graphviz codebase for "beautify"