I am trying to show overlapping activations in my sequence diagram (I am using PlantUML) but they are showing as nested activations:
For example:
@startuml
participant T1
participant T2
participant Main
T1 -> Main ++ #red: start
T2 -> Main ++ #yellow: start
Main --> T1 -- #red : done
Main --> T2 -- #yellow : done
@enduml
This will show nested red/yellow activations while I was expecting red to finish before yellow.
Is this supported? Am I doing something wrong?
Thanks!