Is it possible to group participants in PlantUML?
Asked Answered
D

1

13

I want to have a box around a couple of participants showing that they are part of an entity. How can you do this in PlantUML?

Disposure answered 30/6, 2020 at 23:12 Comment(0)
S
26

You can "box" participants as shown on plantuml site (extract below)

@startuml

box "Internal Service" #LightBlue
participant Bob
participant Alice
end box
participant Other

Bob -> Alice : hello
Alice -> Other : hello

@enduml

This produces: enter image description here

Shakedown answered 4/7, 2020 at 16:45 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.