Snake like chart of architecture-beta in flowchart #7997
Replies: 1 comment 1 reply
|
architecture-beta and flowchart are different syntaxes and layout engines. Endpoint annotations such as 'sr:R -- > L:db' are understood by the architecture-beta grammar, but ordinary flowchart does not interpret them as port constraints. That is why the same text does not produce the same routing. For a normal flowchart, choose the overall direction with flowchart LR or flowchart TD and use intermediate nodes or subgraphs if you need a snake-like visual. The exact edge routing is still layout-engine dependent. If port-level connections are essential, architecture-beta or another diagram engine with explicit ports is the better fit. Adding endpoint syntax to flowchart would be a feature request rather than a syntax correction. A minimal example showing the desired layout and whether the direction must be deterministic would help maintainers judge whether a new layout option is feasible. |
Uh oh!
There was an error while loading. Please reload this page.
I get snake like flow in architecture-beta with a:R --> L:b logic
`architecture-beta
group api(cloud)[API]
Why this logic is not available in flowchart? If possible how can i get the snake flow in flowchart?
`flowchart
lt1["left"]
rt["Right"]
dn["Down"]
lt2["left2"]
This logic doesn't work in flowchart.
All reactions