Thursday 12 October 2023

PlantUML: Activity Diagrams Without Arrows

Using the command 'skinparam ArrowHeadColor none', we can connect activities using lines only (no arrows).

noArrowLines.txt

@startuml

skinparam ArrowHeadColor none
start

:Activity1;
:Activity2;
:Activity3;

stop

@enduml

 

Above snippet generate below diagram.


 

  

Previous                                                    Next                                                    Home

No comments:

Post a Comment