I'm using diagrams and trying to force a node to go on top of another:
with Diagram("My Diagram", show=False):
A = ELB("A")
B = EC2("B")
C = RDS("C")
A >> B
A >> C
Which renders:
Is there a way to enforce node C
going above node B
?
Of course, in this simple example, simply changing the name/order of B and C could do the trick, but this doesn't work when the graph is more complex.