#2788·plantuml

[Sequence] Improve group position (Move the unaffected participant aside)

Author: The-LumCreated Jul 22, 2026Updated Aug 25, 2026
Labelsm:teozongoingfor-claude

Context

To follow:

Wanted feature

  • Could you improve group position (Move the unaffected participant aside)?

Examples

Correct example ✔️

puml
@startuml
x -> x: start
group test
a -> b: 1
b -> c: 2
end
d -> d: next
@enduml

Not working example :x: (Participant d should be outside the group as on the correct example)

puml
@startuml
x -> x: start
group test
a -> b: 1
c -> c: 2
end
d -> d: next
@enduml

Regards, Th.