Please provide a skinparam to add round corners in rectangles in Component Diagram

0 votes
asked Dec 13, 2016 in Closed feature request by anonymous
Please provide a skinparam to add round corners in rectangles in Component Diagram.

1 Answer

+1 vote
answered Dec 13, 2016 by plantuml (294,960 points)
selected Apr 24, 2018 by Anthony-Gaudino
 
Best answer

With last beta https://dl.dropboxusercontent.com/u/13064071/plantuml.jar you can have:

@startuml
skinparam rectangle {
    roundCorner<<Concept>> 25
    roundCorner<<Foo>> 45
    backgroundColor<<Concept>> White
}

rectangle "Concept Model" <<Foo>> {
    rectangle "e" <<Concept>> as e
    rectangle "F"
}
@enduml

This has not been widely tested, so feedback welcome!

...