Disable participans and actors at the bottom of sequence diagrams?

0 votes
asked Dec 17, 2012 in Wanted features by anonymous
edited Dec 17, 2012
Standard sequence charts as drawn in books or with commercial applications (EA) usually don't render objects (participants, Actors etc) at the bottom of the diagram.

Is it possible to disable this feature in PlanUML as well?

1 Answer

0 votes
answered Dec 17, 2012 by plantuml (295,000 points)
You can use the hide footbox command.
For example :

@startuml
hide footbox
title Footer removed
Alice -> Bob: Authentication Request
@enduml
...