Is there any way of making dashed border of box in new activity diagram?Something like:
@startumlstart
#white;line.dashed:Could this box have dashed dashed border?;
end
@endumlor any other way?best regardsWojciech
(--------)
Hi W., and all,
For that you can use style and LineStyle as:
@startuml <style> .myStyle { BackGroundColor white LineStyle 5 } </style> start :This box is white and have dashed border!;<<myStyle>> :Normal style; end @enduml
Enjoy,Regards,Th.