使用 PlantUML标准语法,可以影响箭头的方向:
@startuml
(*) -up-> "We went up"
-right-> "We went right"
--> "We went down because this is standard"
-left-> (*)
@enduml
我想做同样的事情,但是在PlantUML Beta语法中。
我发现像下面的示例一样,可能会影响箭头的颜色和样式:
@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
但是在尝试-right->
,-r->
,-[right]->
或类似方法时,这种方法不适用于指示。
是否有可能影响PlantUML Beta语法中箭头的方向?