set the possition of a object

0 votes
asked Jul 19, 2021 in Question / help by Daniel
is it possible to set the position of an object ?

in my example to move the box "5" at the bottom of the image "under" the box "55"

http://www.plantuml.com/plantuml/png/SoWkIImgAStDuIh9JqyjoKWjKgZcoa_AIaqkKJ0sD30pCZGtHUORMfgOSDLYKMngQeHLNCdKL4aXiLX1mTBGmCB6Ha73NKVPpStStC10Ky7E3gW5cnwe5YDZ8rEGbY0TPKT7c1O5a1wWRJQwkaeWCvMub43gb7HrxQ1ycBk1Aa2kWZaRodL8pKi1-XS0

@startuml
together {
object 31062175
object 31061944
}
together {
object 552
}
together {
object "55" as  9108<< (G,#FF7700) >>
}

together {
object "5" as  2325<< (R,#AA7700) >>
}

552<--"9108"
"2325"-->"9108"
31062175<--552
31061944<--552
@enduml

1 Answer

0 votes
answered Jul 19, 2021 by The-Lu (64,760 points)
 
Best answer

Hello D.,

You can force arrow direction like:

 "2325"-u->"9108"

See doc. here:

If that can help,
Regards,
Th.

...