How can i place hnotes over two participants?

0 votes
asked Nov 26, 2014 in Wanted features by user1441 (120 points)
Its possible to place notes over two participants:

 

Bob -> Alice : hello
note over Bob, Alice
   a note
end note

 

The example does not work properly taking hnote or rnote (PlantUML ver. 8009): The note is placed only over the first mentioned participant.

1 Answer

0 votes
answered Mar 1, 2021 by The-Lu (64,340 points)

Hello U.,

Just to answer to an old unanswered question (and confirm that is now OK):

@startuml
Bob -> Alice : hello
Alice -> Charlie: hello

note over Bob, Alice
   note over Bob, Alice
end note

hnote over Bob, Alice
   hnote over Bob, Alice
end note

rnote over Bob, Alice
   rnote over Bob, Alice
end note
@enduml


[See on PlantUML online server]

Regards,
Th.

...