Appendice: Examples of "Note [top\|right\|bottom\|left] on link" on all diagrams
State
@startuml
state a
state b
state c
state d
a -> b: //link label//
note top on link
Link note
end note
b -down-> c: //link label//
note right on link
Link note
end note
c -left-> d: //link label//
note bottom on link
Link note
end note
d -up-> a: //link label//
note left on link
Link note
end note
@enduml
Appendice: Examples of "Note [top\|right\|bottom\|left] of link" on all diagrams
Test of the new feature "Note [top\|right\|bottom\|left] of link" (from v1.2020.20):
-
OK for Component, Deployment, Use-case
-
KO for Class, Objet, State
[[#FFD700#FIXME]] 🚩 FIXME for Class, Objet, State [[#FFD700#FIXME]]
Class
@startuml
class a
a -> b: //link label//
note top of link
Link note
end note
b ---> c: //link label//
note right of link
Link note
end note
d <- c: //link label//
note bottom of link
Link note
end note
a <--- d: //link label//
note left of link
Link note
end note
@enduml
[[#FFD700#FIXME]] 🚩 FIXME for Class [[#FFD700#FIXME]]
Object
@startuml
object a
object b
object c
object d
a -> b: //link label//
note top of link
Link note
end note
b ---> c: //link label//
note right of link
Link note
end note
d <- c: //link label//
note bottom of link
Link note
end note
a <--- d: //link label//
note left of link
Link note
end note
@enduml
[[#FFD700#FIXME]] 🚩 FIXME for Objet [[#FFD700#FIXME]]
State
@startuml
state a
state b
state c
state d
a -> b: //link label//
note top of link
Link note
end note
b -down-> c: //link label//
note right of link
Link note
end note
c -left-> d: //link label//
note bottom of link
Link note
end note
d -up-> a: //link label//
note left of link
Link note
end note
@enduml
[[#FFD700#FIXME]] 🚩 FIXME for State [[#FFD700#FIXME]]