plantuml / backlog

Contains all issues for plantuml that are not currently working-in-progress
0 stars 0 forks source link

Support note above/bellow of ClassName #17

Open evandrocoan opened 6 years ago

evandrocoan commented 6 years ago

Currently I can use left and right:

  note left of MainController
    This is a model controller
  end note

But sometimes there is a lot of space above or bellow the diagram. Other times, it can be on the upper left, upper right or down left and down right corners. For example:

  note upper left of MainController
    This is a model controller
  end note

Beyond that, PlantUml can try to guess where there is the most available space with:

  note auto of MainController
    This is a model controller
  end note