[Sequence] Teoz and lifelineStrategy problem

0 votes
asked Mar 8, 2020 in Bug by sedin
Hi

After teoz true, lifelineStrategy solid oiption is not applied.

If I turn teoz off, lifelineStrategy is applied.

here is code.

@startuml

!pragma teoz true

scale 2.0

skinparam {

ParticipantFontStyle bold

ParticipantBorderColor #4E7DC5

ParticipantBackgroundColor #4E7DC5

ParticipantFontColor white

' shadowing false

lifelineStrategy solid

ArrowColor black

SequenceLifeLineBorderColor black

roundcorner 15

}

participant a

participant b

participant c

participant d

a->b : hello

sb->c : send

c->d : msg

d->a : eee

@enduml

2 Answers

0 votes
answered Dec 23, 2021 by anonymous
Actually I also want this fix but FWIW I've found Delay (...) resolve this issue. The lifelineStrategy is applied once you put the ... anywhere. I hope it will help though this is a kind of workaround.
0 votes
answered Dec 23, 2021 by Martin (8,360 points)
edited Dec 23, 2021 by Martin

Adding the following to the diagram will give solid lifelines:

<STYLE>
sequenceDiagram {
  lifeLine {
    lineStyle solid
  }
}
</STYLE>

...