Sunday 5 November 2023

Removing Arrows in PlantUML with Detach and Kill Commands

We can remove the arrows using detach or kill command.

removeArrows.txt

@startuml

start

split
	:Task1;
	fork
		:subTask1;
	fork again
		:subTask2;
		kill
	fork again
		:subTask3;
	end fork
split again
	:Task2;
split again
	:Task2;
	detach
end split

stop

@enduml

Above snippet generate below diagram.



 

  

Previous                                                    Next                                                    Home

No comments:

Post a Comment