In the example below I would like to have a way to expand/collapse the included diagram and not always drawing it for readability. In the example below I would like to show the diagram "Part" as a reference and then expand it when I click on it from "Main". This is important for large and complex system designs with many components.
Is this possible?
@startuml
title Main
participant Bob
participant Alice
Bob <- Alice : Hello()
Alice <- Bob : Hello()
!include Part.plantuml
Alice <- Bob : Bye()
Bob <- Alice : Bye()
@enduml
@startuml
title Part
participant Bob
participant Alice
Alice <- Bob : How are you?()
Bob <- Alice : All good, thanks()
@enduml