beta-style: How to disable shadowing?

0 votes
asked Jun 8, 2020 in Question / help by The-Lu (63,920 points)
retagged Jun 8, 2020 by The-Lu

Hello PlantUML team,

Especially to test opacity like in:

We now test beta-style, and we have a question:

  • What is the equivalent, on beta-style, of:
skinparam shadowing false
  • How to disable ‘Shadowing’ in beta-style?

We made some test, with:

<style>
file {
  Linecolor red
  Shadowing 0.0
  'Shadowing none
  'Shadowing false
}
</style>

Without success…


Click to see on online server

Thank for your help,
Regards,
Th.

1 Answer

0 votes
answered Jun 8, 2020 by plantuml (294,960 points)
selected Jun 9, 2020 by The-Lu
 
Best answer

Thanks for the feedback. This has been fixed in last beta http://beta.plantuml.net/plantuml.jar

You can now have :

@startuml
<style>
file {
  Linecolor red
  Shadowing 0
}
</style>

file f
@enduml
...