Jan Rothkegel
Jan Rothkegel

Reputation: 762

Fix layout of component in package

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?

enter image description here

@startuml

mainframe Old

component GUI {  
    component "IBM ILOG Views" {
    }
}

@enduml

Upvotes: 2

Views: 452

Answers (1)

Fuhrmanator
Fuhrmanator

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

Frame with components

Upvotes: 1

Related Questions