Open Byvire opened 6 years ago
At a glance, this might be what you want. I haven't tried to set it through pygraphviz, though. https://graphviz.org/doc/info/attrs.html#d:start In general, that page is very useful for learning how to control graphviz. (PyGraphViz is just a python interface to GraphViz, so the parameters for GraphViz usually can be set through pygraphviz.)
myRandomSeed = 100
G = AGraph(...)
G.graph_attr['start'] = myRandomSeed
Part of #14