Line width as skin parameter?

+1 vote
asked Dec 5, 2012 in Wanted features by anonymous

Please add skin parameter to modify line width. Every element that already has a line color should also get a line width.

Example: The participant boxes and the devider lines/loxes in sequence charts are too thick.

I would like to create an "EA like" skin. Doesn't need to be 100%! Thick lines however don't look elegant:

EA

1 Answer

0 votes
answered Dec 6, 2012 by plantuml (294,960 points)

Very good idea!

This will be implemented soon. In version 7943, we have added sequenceParticipantBorderThickness parameter as beta (you can test it : is it what you are expecting ?)

All lines will have such a parameter in next version.

@startuml
skinparam sequenceParticipantBorderThickness 0.5
Bob -> Alice : hello
@enduml

 

commented Dec 13, 2012 by anonymous
Yes, this is exactly what I expect. We have tried out sequenceParticipantBorderThickness and it works well.

I am looking forward to having all line types for Sequence Charts configurable.

Thanks you very much in advance!
commented Dec 16, 2012 by plantuml (294,960 points)
Ok, works is still in progress, but you can use use with version 7946:

@startuml
skinparam sequenceParticipantBorderThickness 0.5
skinparam sequenceLifeLineBorderThickness 3
skinparam sequenceActorBorderThickness .1
skinparam sequenceDividerBorderThickness .3

Bob -> Alice : hello1
actor Foo1
boundary Foo2
control Foo3
entity Foo4
== First point ==
Bob -> Alice : hello2
@enduml
commented Jul 11, 2018 by anonymous
Has this ever been finished?
commented Jul 11, 2018 by plantuml (294,960 points)
Yes, but not widely documented :-)
...