I have an if/elseif/else condition inside a while loop, there's a diamond at the end of the condition which doesn't look very nice.
I have tried removing it by using
skinparam ConditionEndStyle hline
But it didn't work. Anyone knows what I could change to not have it appear?
Here's a minimal working example:
@startuml
skinparam ConditionEndStyle hline
!pragma useVerticalIf on
start
while (While loop)
if (Condition 1) then (true)
:Do something;
elseif (Condition 2) then (true)
:Do something else;
else
break
endif
endwhile
end
@enduml