Is it possible to add a note to backward activity?

0 votes
asked Jun 25, 2020 in Question / help by anonymous
Hello. Is there a way to add a note to an activity task on the backwards loop? The following is a test diagram with a commented-out example note, which is intended to appear to the right of the backward task:

@startuml
start
repeat :Enter data;
:Submit;
note left: Note
backward :Warning;
'backward note right: Note
repeat while (Valid?) is (No) not (Yes)
stop
@enduml

If that isn't possible currently, could it be considered as a future feature request? Thanks!

1 Answer

0 votes
answered Jun 30, 2020 by plantuml (294,960 points)

Nice suggestion !

Using last beta http://beta.plantuml.net/plantuml.jar you can have :

@startuml
start
repeat :Enter data;
:Submit;
backward :Warning;
note right: Note
repeat while (Valid?) is (No) not (Yes)
stop
@enduml

Is this what you are looking for ?

commented Jul 17, 2020 by anonymous
Perfect! Thanks for implementing this.
...