Forcing a specific order to the USE CASES.

0 votes
asked Nov 7, 2013 in Wanted features by anonymous
I have a diagram of use case where I need some of the use cases appear before others.
Is there any way to force the order in which the UCs are drawn?
 
Thanks

1 Answer

0 votes
answered Aug 8, 2015 by bewam (140 points)
edited Aug 8, 2015 by bewam

Hi,

Nobody replied this one. It's understandable. But I looked for this kind of answer. We can change the ordering simply by changing the arrows declaration order.


@startuml
(1_1) AS t11
(1_2) AS t12
(1_3) AS t13

(2_1) AS t21
(2_2) AS t22
(2_3) AS t23

:Actor: AS A

A --> t11
A --> t12
A --> t13

A ---> t23
A ---> t22
A ---> t21

@enduml

test_plantuml_usecase

Can be closed.

...