Reputation: 5498
I have this bit of plantuml:
@startuml
title Sequence diagram
A -> B : First
B -> C : Second
B -> A : Third
@enduml
It renders like this:
I would like to get this instead, with two arrows "happening concurrently":
Any hints on how to achieve this are appreciated!
Upvotes: 2
Views: 1931
Reputation: 12902
You might find an answer with the Teoz pragma https://plantuml.com/teoz
@startuml
!pragma teoz true
title Sequence diagram
A -> B : First
B -> C : Second
&B -> A : Third
@enduml
Upvotes: 5