Please Add sub diagram support for Activity Diagram

+1 vote
asked Nov 18, 2021 in Wanted features by ood (180 points)
See Here:

https://stackoverflow.com/questions/14800542/visual-paradigm-sub-activity-diagram-icon

Splitting up activity diagrams is sper useful and it stops them getting to large and you try to keep the same level of abstraction all the time.  Please include it.

1 Answer

0 votes
answered Nov 18, 2021 by The-Lu (64,340 points)

Hello O.,

You can currently use sub-diagram, `{{` and `}}`, as:

@startuml
start
:Choose Menu;
repeat 
:Choose menu item;
repeatwhile 
:Confirm Order;
note right
  {{
  start
  :Provide payment
  details;
  :Provide shipment
  details;
  stop
  }}
end note
stop
@enduml

If that can help,
Regards,
Th.

commented Nov 19, 2021 by anonymous
That is quite nice, but does not quite fit the bill as I often need many sub levels and this just would not work for that.
...