Sequence Diagram Skinparam for Collections BorderColor is wrongly using ParticipantBorderColor setting.

0 votes
asked Jan 9, 2018 in Bug by George Liou (240 points)

Hi,

  The skin parameters for "collections" in sequence diagram, CollectionsBackgroundColor and CollectionsBorderColor, has existed in plantuml.1.2018.0.jar with the command "java -jar plantuml.1.2018.0.jar -language"

However, when I tried to config the border color of collections, CollectionsBorderColor had no effect, but ParticipantBorderColor did change the border color.

For example:

@startuml
skinparam {
    ParticipantBackgroundColor #00ff00
    ParticipantBorderColor #00ff00
    CollectionsBackgroundColor #ffcc00
    CollectionsBorderColor #ff0000
}

actor A
collections C
A -> C: messages
C -> A: responces

@enduml

The expect result of C is red border with yellow background.
However, the result of C is green border with yellow background.
 

1 Answer

0 votes
answered Jan 10, 2018 by plantuml (295,000 points)
selected Jan 18, 2018 by George Liou
 
Best answer
Thanks for the feedback!

This should be fixed in last beta http://beta.plantuml.net/plantuml.jar
commented Jan 18, 2018 by George Liou (240 points)
Thank you,

The last beta version did a good job!

^_^
...