Multicolored arrows appear as multiple arrows instead of single arrow with multiple colored lines

0 votes
asked Jul 8, 2018 in Closed question / help by Anthony-Gaudino (5,720 points)

Using the following diagram generates three colored edges instead of a single edge with 3 colored lines:

@startuml
skinparam colorArrowSeparationSpace 3
start
:do a;
-[#blue;#yellow;#green]->
:do b;
@enduml

If I remember it correctly it would generate something similar to this (made with graphviz):

@startuml
digraph G {
a -> b [color="red:blue:green"]
}
@enduml

I don't know if it's a bug or I'm remembering it wrong.

1 Answer

0 votes
answered Jul 8, 2018 by plantuml (294,960 points)
selected Jul 14, 2018 by Anthony-Gaudino
commented Jul 9, 2018 by 27escape (260 points)
But maybe not as the original poster expects, which is a single arrow, made up of 3 different colored lines, vs 3 colored arrows
commented Jul 14, 2018 by Anthony-Gaudino (5,720 points)
The current implementation is correct as I have checked the original QA post that asked for this feature.
...