How to set color and direction of arrow in component diagram?

0 votes
asked Apr 8, 2016 in Wanted features by anonymous
The following creates a syntax error:

[S1] -left[#yellow]-> [S3]

I if leave out either the direction or color, it works.

 

Thanks

1 Answer

+1 vote
answered Apr 8, 2016 by plantuml (295,000 points)

You have to use:

[S1] -[#yellow]left-> [S3]

Is this working for you ?

...