Hello,
My question is regarding a sequence diagram in PlantUML. Given that there is more than 1 message, I was wondering if I could set a default spacing between all messages (all elements even) using skniparam or another command.
There's an operator: "|||" which does this between each element. But it's not quite nice to add ||| in each line such as follows:
@startuml
participant S
participant T
participant A
participant SS
|||
SS -> A: Message1
|||
A -> T: Message 2
|||
T -> S: Message 3
|||
@enduml
And so, it would be really great if there's a command that can alter this spacing distance as default.
(I don't really like the default spacing distance between elements that PlantUML provides)
Thank you.