Good day!
Please tell me what needs to be done so that the first blocks on top are on the same level, or the “body” that is longer is on the left. Tried the “rank” attribute for the graph, but no success.
The presented result is written in python using the appropriate library.
Graph.gv (4.1 KB)
Graph.gv.dot (6.8 KB)
with graph.subgraph() as s:
s.attr(rank="same")
s.node(link_id_start, label="a", shape="circle", fixedsize="true", width="0.75")
s.node('another_node_id', label="", shape="circle", fixedsize="true", width="0")
this solution helped me




