Is your feature request related to a problem? Please describe.
I find it very difficult to draw concepts where the arrows go "back" without destroying my layout.
For example, here are two subgraphs on the same level
flowchart TD
subgraph A
Node1
end
subgraph B
Node2
end
If I add arrows between them, the layout changes, to imply one proceeds the other
flowchart TD
subgraph A
Node1
end
subgraph B
Node2
end
A <--> B
Describe the solution you'd like
I would like to add arrows between nodes, on the same level or a node from below to point to a node above, and these specific arrows should not re-layout.
Describe alternatives you've considered
I tried every arrow ordering I can think of, separate, inside more subgraphs, nothing works.
(Yes, I can relayout this graph to LR, then it would "work" for this toy example, but not for more complicated examples)
Is your feature request related to a problem? Please describe.
I find it very difficult to draw concepts where the arrows go "back" without destroying my layout. For example, here are two subgraphs on the same level
If I add arrows between them, the layout changes, to imply one proceeds the other
Describe the solution you'd like I would like to add arrows between nodes, on the same level or a node from below to point to a node above, and these specific arrows should not re-layout.
Describe alternatives you've considered I tried every arrow ordering I can think of, separate, inside more subgraphs, nothing works. (Yes, I can relayout this graph to LR, then it would "work" for this toy example, but not for more complicated examples)