I have a simple directed graph in Graphviz with two types of nodes and edges. Each species has its own color. My problem is that I would like to keep the drawing schedule, but just change the colors. However, when I replace the node names in two node definitions, the graph changes its layout.
node [shape = circle, width = 0.95, fixedsize = true, style = filled, fillcolor = palegreen] 3 "4-5" 7 "8-9" 10 18 19 node [shape = circle, width = 0.95, fixedsize = true, style = filled, fillcolor = grey] 11 12 "13-14"
Is there a way to get it to create one static layout?
source share