dotted lines between notes and classes

+2 votes
asked Sep 12, 2017 in Wanted features by anonymous

I would like the lines between notes and classes to be dotted.  This is what standard UML diagrams have.

PlantUML actually does render dotted lines when a note is attached to two or more classes.  I'd like the option to have this rendering when a note is attached to one class.

1 Answer

+1 vote
answered Jan 26, 2018 by Anthony-Gaudino (5,720 points)

You may use this hack:

@startuml
class a
note "note" as b

a . b
a .[hidden] b
@enduml
...