Is it possible to change the decision symbol in activity diagram?

0 votes
asked Nov 8, 2022 in Question / help by robert (120 points)

Hello,
Is it possible to change the decision symbol in activity diagram?
I read many books out there (references for my journal) and found that generally the shape of the decision symbol is diamond. So, I need to change the shape from polygon to diamond

Before:

After

Thanks

1 Answer

+1 vote
answered Nov 8, 2022 by The-Lu (63,920 points)
selected Nov 8, 2022 by robert
 
Best answer

Hello R., and all,

For that you can use:

skinparam conditionStyle diamond

As:

skinparam conditionStyle diamond
start
if (do fw?) then (yes)
  :Fw rq;
else (no)
  :Render page template;
endif
stop

See doc. also here:

Regards.

...