Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you center a title for a diagram output to SVG using dot?

Tags:

graphviz

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?

like image 213
chtrinh Avatar asked Jun 23 '11 07:06

chtrinh


1 Answers

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.

like image 133
marapet Avatar answered Nov 07 '22 12:11

marapet