Please allow to use the hide command to hide packages

0 votes
asked Jun 22, 2016 in Closed feature request by mnjones (160 points)

Please allow to use the hide command to hide packages.

Example:

@startuml
package util {
class util1
}

hide util
@enduml

1 Answer

0 votes
answered Jun 24, 2016 by plantuml (295,000 points)
selected Jul 7, 2018 by Anthony-Gaudino
 
Best answer

With last beta: https://dl.dropboxusercontent.com/u/13064071/plantuml.jar you can use the hide command to hide packages.

Example:

@startuml
class Foo1
class Foo2
hide Foo1
class Foo3
Foo2 *-- Foo3
hide Foo3

package util {
class util1
}

hide util
@enduml

Is this what you are expecting ?

commented Jul 4, 2016 by plantuml (295,000 points)
Note that this has been released in V8045
...