How can I create right-directed arrow in the PlantUML new Activity Diagram syntax?
Using the old syntax, I can use -right->
, but I don't find any similar notation from the new syntax guide. How can you achieve the same result with the new syntax? I need to use the new syntax because of its Swimlane support.
Example of diagram with right arrow using old syntax:
@startuml
(*) --> "An Activity"
-right-> "Another Activity"
--> (*)
@enduml
Thanks.