How change width line in a relationship between two classes

0 votes
asked Feb 8, 2016 in Wanted features by anonymous
Hi!

Is possible change the width line in a  relationship between two classes?

My class diagrams show a very thin line and I would like a more "strong" line.

 

Thanks in advance!

1 Answer

0 votes
answered Feb 28, 2016 by plantuml (294,960 points)

You can have:

class foo
foo --> bar
foo -[bold]-> bar1
foo -[dashed]-> bar2
foo -[dotted]-> bar3

 

Is this what you are looking for ?

...