Reputation: 762
I was not able to figure out how to fix the layout of my plantuml diagram. There seems to be no skin parameter for padding of packages or margin of components. Any ideas?
@startuml
mainframe Old
component GUI {
component "IBM ILOG Views" {
}
}
@enduml
Upvotes: 2
Views: 452
Reputation: 12882
I've never used mainframe
(not sure where that comes from). I just know frame
in which one nests other elements:
@startuml
frame Old {
component GUI {
component "IBM ILOG Views" {
}
}
}
@enduml
Upvotes: 1