Layout question

0 votes
asked Sep 22, 2017 in To be sorted by anonymous
The file

@startuml

(A) -> (B)

(C) -> (D)

@enduml

results in this image:

A->B  C->D

However, I would like to have

A->B

C->D

Any idea how to achieve this?

1 Answer

0 votes
answered Sep 25, 2017 by plantuml (294,960 points)

Not perfect, but you can have:

@startuml
(A) -> (B)
(C) -> (D)
(A) -[hidden]-> (C)
@enduml

...