Skip to content
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

line connection show arrow heads - but I dont want them to be shown #6173

Open
idmake-github opened this issue Jan 6, 2025 Discussed in #6172 · 1 comment
Open

line connection show arrow heads - but I dont want them to be shown #6173

idmake-github opened this issue Jan 6, 2025 Discussed in #6172 · 1 comment
Labels
Status: Triage Needs to be verified, categorized, etc

Comments

@idmake-github
Copy link

idmake-github commented Jan 6, 2025

Discussed in https://github.com/orgs/mermaid-js/discussions/6172

Originally posted by idmake-github January 6, 2025
The code below shows arrow heads for

B1---E1
B1---D1
B1---A1

But I expect that none are shown. At least based on the documentation.

see https://jojozhuang.github.io/tutorial/mermaid-cheat-sheet/ section 1.3 Links between Nodes

flowchart TD
    A1((Idle<br>Motor=0))
    B1((Error))
    C1((Positionierung))
    D1((Work))
    E1((Done))

    A1-->C1
    C1-->B1
    C1--> |Start<br>Position=1| D1
    D1--> |Quittung| E1
    E1-->A1
    B1--> |Feheler behoben| A1
    D1-->B1

    B1---E1
    B1---D1
    B1---A1
 
    %% #00ff00 (Grün): Standard Ablauf
    linkStyle 0,2,3,4 stroke:#00ff00,stroke-width:1px;
    %% #0000ff (Blau): Fehler behoben
    linkStyle 5 stroke:#0000ff,stroke-width:1px;
    %% #ff0000 (rot): Fehler Behandlung
    linkStyle 1,6 stroke:#ff0000,stroke-width:1px;
    %% #ffffff (weiß): notwendig um Error in die Mitte zu bekommen
    linkStyle 7,8,9 stroke:#FFFFFF,stroke-width:1px;
Loading
@github-actions github-actions bot added the Status: Triage Needs to be verified, categorized, etc label Jan 6, 2025
@palto42
Copy link

palto42 commented Jan 7, 2025

Seems there is already a related PR #6093

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Status: Triage Needs to be verified, categorized, etc
Projects
None yet
Development

No branches or pull requests

2 participants