How to make dashed/dotted line with rows on Deployment diagram?

0 votes
asked Aug 26, 2016 in Bug by anonymous

Produced lines are solid, not dotted

 

@startuml

node "Server 1" {
  database Db1 [
    db 1
  ]
}
node "Server 2" {
  database Db2 [
    db 2
  ]
}
node "Server 3" {
  database Db3 [
    db 3
  ]
}


Db1 --> Db2: replication
Db1 --> Db3: replication
@enduml
 

1 Answer

0 votes
answered Aug 26, 2016 by plantuml (294,960 points)
commented Aug 26, 2016 by anonymous
You cool, man! Thanks a lot!
http://plantuml.com/sequence.html
sequence diagram confused me.
There `->` means solid line and `-->` dotted line.
...