Skinparam NoteBorderThickness seems not to work

0 votes
asked Sep 16, 2016 in Closed bug by JohannesMeier (460 points)
recategorized Sep 28, 2016 by JohannesMeier

Hello,

in a class diagram, I tried to change the thickness of borders for notes using skinparam, but the thickness remains unchanged. I could change the color of the border successfully.

 

Code:

@startuml
skinparam NoteBorderThickness 10
skinparam NoteBorderColor green

note as node1
  This is a test note!
end note
@enduml

 

I tried it with the last beta of plantuml and the online application (http://plantuml.com/plantuml/png/ROkn3O0m30HxJ_5iG5Q0dee5B6915B2HdVr5e4RwudL_7xNepSuN5ciocMVnzIXRLOb06Yb-XDbES-mkeaJQCJYWbYKHqD-17aQJQ7ZdWKJprnu0), with the same result in both cases.

1 Answer

+1 vote
answered Sep 16, 2016 by plantuml (295,000 points)
selected Sep 16, 2016 by JohannesMeier
 
Best answer
Thanks for the feedback. This is fixed in last beta

https://dl.dropboxusercontent.com/u/13064071/plantuml.jar
commented Sep 16, 2016 by JohannesMeier (460 points)
It works fine: Thanks for the fast fix!
commented Aug 4, 2022 by Mikhail Addanikov
Hello

I can not change noteBorderColor plantUML ignore it at all (The same example of this thread)

I have tried local version 1.2022.6 result is the same as with online version
commented Aug 5, 2022 by The-Lu (64,340 points)

Hello M., and all,

You can now use style, more modular, as:

@startuml
<style>
note {
  LineColor green
  LineThickness 10
  FontSize 20
}
</style>

note as node1
  This is a test note!
end note
@enduml

Regards.

...