skinparam lifelinestrategy nosolid not working anymore

0 votes
asked May 19, 2023 in Bug by kirchsth (4,880 points)

Based on docu or issue it should be possible to "activate" the default lifelinestrategy nosolid in a sequence diagram, but independent of the used value skinparam lifelinestrategy activates a solid strategy

BR Helmut

1 Answer

0 votes
answered May 19, 2023 by The-Lu (63,920 points)
selected May 19, 2023 by kirchsth
 
Best answer

Hello K., and all,

For that you can use `style` and change the value of LineStyle like:

@startuml
<style>
lifeLine {
  LineStyle 0
}
</style>

Bob -> Alice : hello
Alice -> Bob : ok
Alice -> Bob : ok2
Alice -> Bob : ok3
@enduml
LineStyle 0
LineStyle 5

Regards,
Th.

commented May 19, 2023 by kirchsth (4,880 points)

Thank you for the hint (it works with the old skinparam too)



BR Helmut

...