I'm having this code for an activity diagram:
@startuml
|A|
start
if (Setup A) then (no)
'space label only for alignment
else (yes)
|B|
if (Setup B) then (no)
else (yes)
|C|
if (Execute) then (no)
else (yes)
| |
:Execute;
:Process X;
:Process Y;
endif
endif
|B|
:Cleanup B;
endif
|A|
:Cleanup A;
@enduml
which generates this diagram with no branches to the left and yes-branches to the underside.
A screen shot can be found here: https://github.com/Some-other-other-dude/plant_uml/blob/main/Look_like_this.png
This is the best I can come up with to have it to my liking.
But I rather would have the no to underside and yes to the right.
Here is how it should look like:
https://github.com/Some-other-other-dude/plant_uml/blob/main/Should_look_like_this.png
Is that possible at all?
And if possible, I would like to have the swimlanes not shown.