How to have the title of a box at top and bottom

0 votes
asked May 28, 2021 in Question / help by anonymous
box "title"

particpant xx

end box

1 Answer

0 votes
answered May 28, 2021 by The-Lu (64,760 points)

Hello A.,

Currently this is not possible (only on the top, not on the bottom).
You can request a wanted feature for that if you want.

Then a workaround is perhaps to use notes as:

@startuml
box title
rnote over Bob, Alice : **same_title**
participant Bob
participant Alice
end box

participant Other

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

rnote over Bob, Alice : **same_title**
@enduml

If that can help,
Regards,
Th.

...