Activity diagram - Partition width

+3 votes
asked May 29, 2017 in Wanted features by anonymous
Hi,

is there a command for setting the width / minWidth of a partition in activity diagram?

1 Answer

–1 vote
answered May 29, 2017 by plantuml (295,000 points)

Yes, you can either force a minimum value, or ask for same value for all swimlanes:

@startuml
skinparam swimlaneWidth 400
|A|
:foo;
|b|
:foo2;
@enduml

@startuml
skinparam swimlaneWidth same
|A|
:foo;
|b|
:foo2 which is very long;
@enduml

Is this what you are looking for ?

 

commented May 30, 2017 by anonymous
This works for swimlanes.
I was looking for the same feature but for partitions.
...