2

I have this bit of plantuml:

@startuml

title Sequence diagram

A -> B : First
B -> C : Second
B -> A : Third

@enduml

It renders like this:

Sequence diagram with unaligned sequence arrows

I would like to get this instead, with two arrows "happening concurrently":

Sequence diagram with aligned arrows

Any hints on how to achieve this are appreciated!

Fuhrmanator
  • 11,459
  • 6
  • 62
  • 111
Petter Hesselberg
  • 5,062
  • 2
  • 24
  • 42

1 Answers1

3

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

Broadcast

Fuhrmanator
  • 11,459
  • 6
  • 62
  • 111