Individual style of elements with from same type

0 votes
asked Apr 24, 2024 in Question / help by Andy (180 points)
Dear PlantUML community,

I observed that the styling <style> </style> has changed.

When rendering *.puml looks different now. For me in a bad way, that´s why I reach out to you, asking for have it looking in the old way. (screenshot below)

I´m pinpointing to sequence diagram individual style of the same entity type e.g. a "participant". This is still possible but in the element itself the name of the style is printed, which I don´t want so see.

Question:

How to get rid of the <<myStyle>> in the rendered diagram?

Thanks much in advance

-----------------------------------------------------------

@startuml
skinparam useBetaStyle true
' style enclosure declaration
<style>
    ' scope to sequenceDiagram elements
    sequenceDiagram {

      ' scope to actor element types
      actor {
        FontColor Blue
      }

     ' define a new style, using CSS class syntax
     .myStyle {
        FontColor Red
     }

}
</style>

' printed in blue
actor Bob
' this will now be printed in Red
actor Sally <<myStyle>>

1 Answer

0 votes
answered Apr 26, 2024 by kirchsth (7,480 points)
selected Apr 28, 2024 by Andy
 
Best answer

In sequence diagram you can hide all stereotypes with "hide stereotype"



BR Helmut

PS.: see also Hide sterotype on sequence diagram · Issue #58 · plantuml/plantuml (github.com)

commented Apr 28, 2024 by Andy (180 points)
Hello Helmut,

you helped me out. Thanks much for your expertise

Best regards Andreas
...