-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In flowcharts, how to get the graph lines to come out of vertices of the decision box #3260
Comments
Maybe by setting Include your code so others can test. |
Hi @flywire . The code I used is the sample chart code in mermaid live editor for flowcharts.
while renders to graph TD
A[Christmas] -->|Get money| B(Go shopping)
B --> C{Let me think}
C -->|One| D[Laptop]
C -->|Two| E[iPhone]
C -->|Three| F[fa:fa-car Car]
I tried the curve options including |
That might be it. I think just having that as a config might be good too. |
Linear Curve is better: |
Using the example in mermaid.live for flowcharts, I can create a nice flowchart - but the decision box ("is true?") has the graph arrows to the next steps coming out of its body.
Here is what I get today
Instead, I would want the lines to come out of the vertices of the decision box - something like this;
Is there a way to define my charts to push the graphing lines from the vertices today? If not, can I make this Feature Request?
The flowcharts just feel far more organized and pleasing that way.
The text was updated successfully, but these errors were encountered: