In an activity diagram, I would like to change the style of the arrow associated with a "backward" statement. Below is my latest attempt to make the backward arrows blue and dashed. I have tried many different ways, none of which have worked. How do I do this correctly? Thank you for any help!
@startuml
<style>
activityDiagram {
.bw {
arrow {
LineStyle 5
LineColor blue
}
}
}
</style>
start
repeat :sense;
backward:adapt sensor sensitivity; <<bw>>
repeat while
->;
repeat :evaluate;
:decide;
:respond;
backward:remember/learn; <<bw>>
repeat while
->;
stop
@enduml