Hello (new here
),
I made a graphic using "if" and I would have liked it to be arranged vertically.
So I used "!pragma useVerticalIf on" but nothing changed.
Here is my code:
@startuml
!pragma useVerticalIf on
scale 1020x4000
start
if (L'étudiant est-il vu \n\n(écran ou présence physique) ?) then (<color:red>Non)
#pink:Absent;
kill
else (<color:green>Oui)
if (Le cours est-il hybride ?) then (<color:red>Non)
if (Retard de + de 15min ?) then (<color:red>Non)
#palegreen:Présent;
kill
else (<color:green>Oui)
#pink:Retard;
endif
kill
else(<color:Green>Oui)
if (Cours en présence du prof ?) then (<color:green>Oui)
:Présent \nHybride Synchrone;
kill
else (<color:red>Non)
:Présent \nHybride Asynchrone;
kill
@enduml
Do you know why this is not working?
Thanks in advance !