Please allow to set notes skimparams by stereotypes

0 votes
asked Oct 7, 2015 in Closed feature request by anonymous

This is similar to issue at http://plantuml.sourceforge.net/qa/?qa=3770/howto-color-individual-meassage-arrows-combined-fragments

Please allow to set notes skimparams by stereotypes.

Example:

@startuml
skinparam note {
BackgroundColor<<st1>> #white
BorderColor<<st1>> #green
FontColor<<st1>> #red
shadowing false
shadowing<<with>> true
shadowing<<without>> false
}
A -> B : msg
note<<st1>> over A : text 1
note over B #line:green;back:lightblue;shadowing:false : text 2
note<<with>> over A : text 3
note<<without>> over A : text 4
@enduml

1 Answer

0 votes
answered Oct 13, 2015 by plantuml (294,960 points)
selected Jul 8, 2018 by Anthony-Gaudino
 
Best answer

So here is a new beta:
https://dl.dropboxusercontent.com/u/13064071/plantuml.jar

It supports the following syntax:

@startuml
skinparam note {
BackgroundColor<<st1>> #white
BorderColor<<st1>> #green
FontColor<<st1>> #red
shadowing false
shadowing<<with>> true
shadowing<<without>> false
}
A -> B : msg
note<<st1>> over A : text 1
note over B #line:green;back:lightblue;shadowing:false : text 2
note<<with>> over A : text 3
note<<without>> over A : text 4
@enduml

Is this what you were expecting ?

commented Oct 15, 2015 by anonymous
Thanks! It works great.
commented Nov 1, 2015 by plantuml (294,960 points)
This has been released in V8032.
...