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?
Asked
Active
Viewed 6,825 times
1 Answers
21
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

Jean-Marc Volle
- 3,113
- 1
- 16
- 20