Is the skinparam ArrowHeadColor no longer available?

0 votes
asked Jun 7, 2022 in Question / help by Astonfe

Sorry, probably I'm wrong, but the skinparam ArrowHeadColor does not work anymore. Is it still available?

@startuml
skinparam ArrowHeadColor none
:Qwerty;
:Ytrewq;
@enduml

1 Answer

0 votes
answered Jun 7, 2022 by plantuml (294,960 points)
Sorry about that, it's a regression.

We are going to have a look on it.
commented Jun 7, 2022 by The-Lu (63,920 points)

Hello PlantUML team,

And, at the same time:

  • Why not to create a style for that?
Here is a proposal:
Code  Output
@startuml
skinparam ArrowHeadColor none
:Qwerty;
:Ytrewq;
@enduml
@startuml
<style>
activityDiagram {
  arrow {
    HeadColor none
    FontColor gold
    FontName arial
    FontSize 15
  }
}
</style>
:Qwerty;
->text;
:Ytrewq;
@enduml

Regards.

commented Jun 20, 2022 by Astonfe
The 2022.1 version is the last working.
commented Jun 22, 2022 by plantuml (294,960 points)
Thanks for the report.

It should be fixed in version 1.2022.6

Tell us if you find other issues!
commented Jun 22, 2022 by The-Lu (63,920 points)

Thanks...

Then there are some doc to update... wink

commented Jun 23, 2022 by Astonfe
Thanks, the 2022.6 version works.
...