0

I have this sequence of note right in a PlantUML sequence diagram:

note right #ee00aa: refactor
note right #ff0000: bug

Instead of showing the notes below each other, they overlap:

enter image description here

Is there a way to show them not overlapping?

Alexander Zeitler
  • 11,919
  • 11
  • 81
  • 124

1 Answers1

2

I did a quick test and maybe the following does work for you / gives some pointers:

@startuml
Bob -> Alice : hello
note right of Alice #ee00aa: refactor
note right of Alice #ff0000:  bug
@enduml

enter image description here

albert
  • 8,285
  • 3
  • 19
  • 32