Set colour of font to #hidden / hide text in Sequence Diagram?

0 votes
asked May 26, 2016 in To be sorted by rkrug (420 points)

Hi

I would like to hide the text in the following sequence diagram:

 

@startuml       
skin BlueModern

participant Funder
actor Management
participant IAP
participant Model

== Funding Phase ==

Model <- Management : Provides possible funding scenarios
activate Model
Model -> Management: Provides Spread scenarios
deactivate Model

@enduml
 

I managed to hide the arrows as follow

@startuml       
skin BlueModern

participant Funder
actor Management
participant IAP
participant Model

== Funding Phase ==

Model <[#hidden]- Management : Provides possible funding scenarios
activate Model
Model -[#hidden]> Management: Provides Spread scenarios
deactivate Model

@enduml
 

But one can still see the text. Simply deleting the text is not an option, as i want to use the diagrams in a presentation and want to overlay them to show a stepwise development.

 

Any suggestins how I set the font color of the text to #hidden?

Thanks,

Rainer

2 Answers

0 votes
answered May 27, 2016 by plantuml (295,000 points)
selected May 27, 2016 by rkrug
 
Best answer


You can try the last beta https://dl.dropboxusercontent.com/u/13064071/plantuml.jar

Note that there should be no # before the hidden keyword.
So for example you should use:

Model <[hidden]- Management : Provides possible funding scenarios

Tell us if it works for you!

commented May 27, 2016 by rkrug (420 points)
OK - this is working. Thanks. Will this be included in the next release?

But I have one more question: is it possible to hide the participant Model?
0 votes
answered May 26, 2016 by plantuml (295,000 points)
It looks like a bug : we should also hide the text when you use #hidden

We'll make a fix, and post it here when ready.

Thanks for the feedback!
commented May 27, 2016 by rkrug (420 points)
Thanks a lot, quick response as usual,

Rainer
...