How to create a simple flow chart with arrow connected boxes going left to right?

+1 vote
asked Jan 9, 2019 in Question / help by kaushalmodi (260 points)
edited Feb 26, 2019 by kaushalmodi

Hello,

I tried couple of things that you can see here: https://scripter.co/notes/plantuml/#simple-flowchart

But I was unable to draw a simple flowchart with these 2 rules:

  1. The flow chart should go from left to right (not from up to down)
  2. No start or stop markers

Failed attempts

Attempt 1:

(*)
-> "First Activity"
-> "Second Activity"
-> "Third Activity"

Attempt 2:

"First Activity"
-> "Second Activity"
-> "Third Activity"

Attempt 3:

:First Activity;
:Second Activity;
:Third Activity;

commented Feb 26, 2019 by kaushalmodi (260 points)
Can I please get help on this?

2 Answers

0 votes
answered Nov 3, 2021 by chris (2,540 points)

Try this, its a deployment diagram

This will work:

r1 -> r2
r2 -> r3

but I've added the -right-> syntax to force the direction in the event you want a larger diagram

0 votes
answered Nov 3, 2021 by Martin (8,360 points)
edited Nov 3, 2021 by Martin

How about this syntax?

@startuml
"First Activity" -right-> "Second Activity"
-right-> "Third Activity"
@enduml

(This uses the 'old' activity diagram syntax, I'm not sure how to do the same in the new 'beta' syntax...)

Here's another form I found that works (the trick is to find some syntactical element that forces the parser down the activity diagram form, in this case [ text ] comments on arrows.  (It would nice to be able to use @startactivity instead, but that option doesn't exist.)

@startuml
"First Action" -> [ ] "Second Action"
-> [ ] "third action"
@enduml

commented Nov 3, 2021 by The-Lu (64,760 points)

Thanks @Martin

You can also use a mix... wink

@startuml
"First Activity" -right-> "Second Activity"
-> "Third Activity"
-> "Fourth Activity"
@enduml

Regards.

...