skinparams componentInterfaceBorderColor and componentInterfaceBackgroundColor doesn't work

0 votes
asked Jun 23, 2016 in Bug by linuxdoesitbetter (120 points)

Hello dear developers!

The skinparams componentInterfaceBorderColor and componentInterfaceBackgroundColor doesn't work. You can see this also in the example of skinparam subsection in the component diagram section. The border isn't "RosyBrown" and the background is not orange.

Thanks for this useful tool! :O)

1 Answer

0 votes
answered Jun 24, 2016 by plantuml (294,960 points)
selected Jun 27, 2016 by linuxdoesitbetter
 
Best answer

Hi,

Thanks for the feedback.

The syntax has been slightly changed. We will update the documentation.

You should use:

 @startuml
 skinparam interface {
   backgroundColor RosyBrown
   borderColor orange
 }
 () "Data Access" as DA
 DA - [First Component]
 [First Component] ..> () HTTP : use
 @enduml

Thanks again!

commented Jun 27, 2016 by linuxdoesitbetter (120 points)
It works, thank you very much!
...