GraphViz notes
Windows download is here. I cannot find a statically linked version (all-in-one). This is a good short tutorial on how to draw flowchart. Note how common node attributes can be declared together:
1 | digraph { |
On commandline, use:
dot -Tpng -o graph.png graph.dot
For newlines in labels, you can use \n
. Alternatively, literal newlines in the string is captured and regarded. Further more, \
in
strings are line continuation. So for better formatting, one can write:
1 | node[label="\ |
References