Hi,
I am writing a sequence diagram that expands to 12 pages. I want to use "hide unlinked" on each page so that the participants not used in a page are hidden. But they might be used in page 2 and so on.
Just writing hide unlinked on each page does not work. Please can someone suggest an elegant solution to this.
For example:
The following piece of code spawns c and d in first page even when they are not used. It spawns a and b in 2nd page where we have interactions only between c and d.
@startuml
participant a
participant b
participant c
participant d
participant e
participant f
participant g
hide unlinked
a->b: Hi A
b -> a :Hello B
newpage
hide unlinked
d->c: Are you there
c -> d : Hi D
@enduml
Thanks,
Preetika