Any way of making dashed border in new activity diagram?

0 votes
asked Aug 23, 2023 in Question / help by Wojciech

Is there any way of making dashed border of box in new activity diagram?

Something like:

@startuml
start 

#white;line.dashed:Could this box have dashed dashed border?;

end

@enduml

or any other way?
PlantUML diagram
best regards
Wojciech

1 Answer

0 votes
answered Aug 23, 2023 by The-Lu (77,040 points)
 
Best answer

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.

...