I'm running dot -Tsvg -o v.svg t.dot
And I get no subgraph boxing or labelling
Input:
Comments:
digraph G {
subgraph {
label = "SOME LABEL";
color = blue;
style = filled;
"NoFlow-Finished" -> "NoFlow-Finished";
"NoFlow-Orphaned" -> "NoFlow-Orphaned";
"NoFlow-Error" -> "NoFlow-Error"
}
}
[erg] Subgraphs play many roles within graphviz, including scopes
for attribute assignment and very general topological information. The
role you want is handled by cluster subgraphs. These are subgraphs
whose name begins with "cluster". This is documented in the dot
user's guide
http://www.graphviz.org/Documentation/dotguide.pdf
There are also examples on the gallery page:
http://www.graphviz.org/Gallery.php
You can look at the corresponding dot input to see how this is done.
Owner: erg
Status: Fixed