How to mark a group in a squence diagram as a deprecated piece?

0 votes
asked Apr 13, 2017 in Closed question / help by boshka (3,940 points)
edited May 17, 2017 by boshka
Is there a way to mark a group as a deprecated part of the sequence (such as, crossed out watermark, a watermark with word "deprecated", or something like that)?
commented May 17, 2017 by boshka (3,940 points)
Any ideas on that?

1 Answer

0 votes
answered May 17, 2017 by plantuml (295,000 points)

A possible workaround is to do something like:

@startuml
Bob -> Alice : hello
== start of deprecated ==
Bob -> Alice : hello deprecated
== end of deprecated ==
@enduml

http://www.plantuml.com/plantuml/uml/SoWkIImgAStDuNBAJrBGjLDmpCbCJbMmKiX8pSd9vxArLG0hKCXFKqX9BIXAJKuiIKrHiBN5gXn92KXdQbuAfZuk1w0mq3u0

Far from perfect, but at least it works!

 

...