Sequence diagram stereotype options

0 votes
asked Dec 8, 2014 in Wanted features by anonymous
I need to hide some participants in my sequence diagrams, i tried to make them not visibles using stereotypes :

@startuml
skinparam sequence {
            ParticipantBorderColor<<st>> #FFFFFF  //not working
            LifeLineBorderColor<<st>> #FFFFFF  //not working
            LifeLineBackgroundColor<<st>> #FFFFFF  //not working
            ParticipantBackgroundColor<<st>> #FFFFFF  //working!
            ParticipantFontColor<<st>> #FFFFFF  //not working

            shadowing<<st>> false  //not working
}

participant AA<<st>>
participant BB

AA -> BB
@enduml

 

I think that these stereoptypes just hav'nt been implemented yet. Is there another way to make a participant not visible (including his lifeline, but not his notes or activations).

Thank you.
commented Dec 9, 2014 by rmric (2,140 points)
Similarly to class/component diagrams (http://plantuml.sourceforge.net/classes.html#Hide), the syntax could be:

  hide AA
or
  hide participant <<st>>

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:

[Antispam2 Feature: please please wait 1 or 2 minutes (this message will disappear) before pressing the button otherwise it will fail](--------)
To avoid this verification in future, please log in or register.
...