I am wanting to create a collaboration-like diagram which looks something like this:
I am struggling to find a way to mark-up PlantUML
to influence the positioning of the various objects. I have also tried using Graphviz
directly, but with even worse results.
This is what I is renders as now:
Can anyone provide some hints as to what I can try?
@startuml
actor "Operator" as op
actor "Subscriber" as sub
node "HSS" as hss
node "SMDP+" as smdp
op -right-> smdp : 1: Place profile order
smdp -> op : 2: Return provisioning data
op -right-> hss : 3: Provision profile data
op -down-> sub : 4: Provide download info
sub -[norank]> smdp : 5: Request download
hss -[hidden]down-> smdp
@enduml