What I want to ask is that we can draw figures using dot but is it possible to give a name to that figure and that name comes below that figure?
Asked
Active
Viewed 141 times
1 Answers
1
If your question is about graphviz, here's how to add a label below the graph:
digraph {
1 -> 2;
labelloc="b";
label="Graph label";
}

marapet
- 54,856
- 12
- 170
- 184
-
Can you tell me how to specify the size of label too – neel Sep 14 '12 at 15:39
-
You can use `labelfontsize` - check out all attributes on http://www.graphviz.org/content/attrs – marapet Sep 14 '12 at 15:52