73

So far I tried this line but dot keeps pushing it aside making room for my nodes (pushes it to the right):

_diagram_info [shape="plaintext", label="My Diagram\l", fontsize=13]

Is there a way to center the label by pos, using dot?

wonea
  • 4,783
  • 17
  • 86
  • 139
chtrinh
  • 808
  • 1
  • 6
  • 8

1 Answers1

166

That's how I'd add a title for a graph:

digraph {
    // nodes, edges, subgraphs 
    ...
    // title
    labelloc="t";
    label="My Diagram";
}

This will add a centered title to the top of the graph.

The same syntax can also be used for subgraphs.

marapet
  • 54,856
  • 12
  • 170
  • 184