Hide the class circle of only a particular class

0 votes
asked Jun 13, 2022 in Question / help by nawazzy
I have two classes, when I do hide circle at the top, the class symbol disappears from both the classes, is there anyway that I only remove class symbol of particular class and leave the rest as it is?

1 Answer

0 votes
answered Jun 13, 2022 by The-Lu (63,920 points)
edited Jun 13, 2022 by The-Lu

Hello N.,

For that you can use this syntax:

hide <class_alias> circle

As:

@startuml
title `hide A circle`
class A
class B
hide A circle 
@enduml

If that can help,
Regards.

...