How to style loops and partitions in activity-beta diagram?

0 votes
asked Jun 1, 2015 in To be sorted by bond007 (400 points)

Loops and partition styling in UML activity diagrams?

2 Answers

0 votes
answered Jun 13, 2015 by plantuml (294,960 points)
Hi,

Could you give some details on your request ?

We do not understand what you are looking for ?

Thanks!
commented Jun 15, 2015 by bond007 (400 points)
Thank you for your reply!
I mean styling of
1. partitions,
2. loops' conditions:
http://194.226.171.69:18200/0tk5QEylx/activity_sample.png
0 votes
answered Aug 3, 2018 by plantuml (294,960 points)

With last beta http://beta.plantuml.net/plantuml.jar you can now have :

@startuml
start
partition Action {
  :foo1;
}
package Action {
  :foo2;
}
card Action {
  :foo3;
}
rectangle Action {
  :foo4;
}
stop
@enduml

Tell us if you need more styles.

...