note background and border color cannot be changed in the activity diagram

0 votes
asked May 19, 2015 in Bug by anonymous
I tried noteBackgroundColor and noteBorderColor, but did not recive any received modifications. Othe parameters caused changes.
commented Oct 14, 2015 by anonymous
custom local coloring does not seem to be supported

Example:
   note left #aafbbcc
      some note
   end note
commented Oct 15, 2015 by plantuml (295,000 points)
Hello,
Which version of PlantUML are you using ?
It's working for us:

@startuml
note left #aabbcc
    some note
end note
@enduml

Result : http://www.plantuml.com/plantuml/png/oyilILN8IKqhKL1EJ4nAIaxcKW22ulpSL8Kye1HNQbuAc040

1 Answer

0 votes
answered May 19, 2015 by plantuml (295,000 points)

Which version of PlantUML are you using ?

The following examples are working with last version:

@startuml
skinparam noteBorderColor blue
:foo;
note left : dummy
@enduml

and:


@startuml
skinparam noteBorderColor blue
(*) --> foo
note left : dummy2
@enduml

 

 

commented Oct 20, 2021 by xavi
It's posible to put this note on arrow? thanks!
commented Oct 20, 2021 by The-Lu (64,340 points)

Hello X.,

Yes it is, as:

@startuml
skinparam noteBorderColor blue
(*) --> foo
note on link: dummy2
@enduml

See also doc. here:

If that can help,
Regards,
Th.

commented Oct 23, 2021 by anonymous
wow, Thank's a lot!!
...