How can I draw a state transition to self from a different side of the state?
If both transitions come from the right hand side of the state, the diagram can look messy. Example:
@startuml
[*] --> state
state --> state : event1 / do A
state --> state : event2 / do B
@enduml
Using -left-> or -down-> does not work.
Am I missing something?
Thanks