[Style] Allow Shadowing with RoundCorner on sequence reference

0 votes
asked Aug 24, 2021 in Wanted features by The-Lu (64,340 points)

Hello PlantUML Team,

  • Could you allow PlantUML to manage Shadowing with RoundCorner style on sequence reference?

Example:

@startuml
<style>
</style>
ref over Alice, Bob : this is a reference\n(normal style)
<style>
sequenceDiagram {
  reference {
    RoundCorner 30
    Shadowing 1
  }
}
</style>
ref over Alice, Bob : this is a reference\n(RoundCorner + Shadowing)
<style>
sequenceDiagram {
  reference {
    RoundCorner 30
    Shadowing 0
  }
}
</style>
ref over Alice, Bob : this is a reference\n(RoundCorner + No Shadowing)
@enduml

Thanks,
Regards.
Th.

1 Answer

0 votes
answered Aug 25, 2021 by plantuml (295,000 points)
selected Aug 26, 2021 by The-Lu
 
Best answer
Many thanks for the report.
This is fixed in last beta http://beta.plantuml.net/plantuml.jar and on the online server.

Tell us if it's not working for you!

Regards,
commented Aug 26, 2021 by The-Lu (64,340 points)
Thanks for your correction.
asked Aug 26, 2021 in Bug by The-Lu (64,340 points) Cropped reference on sequence diagram
...