I have a PlantUML sequence diagram where Alice
exchanges messages with Cecil
once and then only the communication with Bob
happens. This flow causes the subjects are ordered by the time of their first interaction.
@startuml
Alice -> Cecil: hi
Cecil -> Alice: fu
Alice -> Bob: hi
Bob -> Alice : hello
Alice -> Bob: howdy?
Bob -> Alice: fine
Alice -> Bob: r u sure?
Bob -> Alice: ye
@enduml
It looks ugly - I want to avoid showing the interaction between Alice
and Bob
over Cecil
.
How to assure a custom order of the subjects, i.e. Alice
- Bob
- Cecil
?
sub
diagram that are imported! – Chela