With the PlantUML Standard Syntax it is possible to influence the direction of an arrow:
@startuml
(*) -up-> "We went up"
-right-> "We went right"
--> "We went down because this is standard"
-left-> (*)
@enduml
I want to do the same but in the PlantUML Beta Syntax.
What I have found is the possibility to influence the color and style of the arrow like in the example below:
@startuml
start
:We went down because this is standard;
-[#green,dashed]-> We went down with a green and dashed arrow;
:We went down again;
stop
@enduml
But this doesn't work with directions when trying -right->
, -r->
, -[right]->
or anything similar.
Is there a possibility to influence the direction of an arrow in PlantUML Beta Syntax?