Bold arrows via skinparam are not working anymore

0 votes
asked Mar 25, 2022 in Bug by kirchsth (4,960 points)

In old version all 3 bold arrow style was correct displayed.

(additional the component color is changed from red to gray, but I think this is related to the new themes and not important for me)

BR Helmut

@startuml

skinparam arrow {
    Color #666666
    FontColor #666666
    FontSize 12
}

skinparam arrow {
    Color green
    FontColor green
}

skinparam arrow<<bluebold>> {
    Color blue;line.Bold()
}

skinparam arrow<<bold>> {
    Color ;line.Bold()
}

[a]
[b]

' not working anymore
a -->> b <<bold>> : "stereotype bold"

' not working anymore
a -->> b <<bluebold>> : "stereotype bluebold"

' working in old and new version
a -[#blue,bold]-> b : "line bluebold"

@enduml

 

1 Answer

0 votes
answered Mar 30, 2022 by plantuml (295,000 points)
selected Mar 30, 2022 by kirchsth
 
Best answer
Thanks for the report. This should be fixed in last release V1.2022.3
...