Adding notes to links in Use Case Diagrams.

0 votes
asked Jul 11, 2019 in Wanted features by lockywolf (400 points)

Hello!

Is it possible to add support for adding notes ("comments") to links on Use Case diagrams?

Like this:

skinparam monochrome true
skinparam packageStyle rectangle

usecase uU1 as " "
usecase uU2 as " "

uU1 .right..> uU2
note bottom of link
    Link note
end note

2 Answers

0 votes
answered Oct 28, 2020 by The-Lu (63,920 points)

Hello L.,

The good syntax is: "note on link"

uU1 .> uU2
note bottom on link
    Link note
end note

With that:


[See on PlantUML server]

Regards,
Th.

0 votes
answered Nov 26, 2020 by The-Lu (63,920 points)

Hello L.,

FYI: From V1.2020.20, PlantUML accepts now all the syntaxes:

note bottom on link

or

note bottom of link


[See on PlantUML server]


Thanks to PlantUML team,
Regards,
Th.

...