Reference Background in Sequence Diagram does not Support Transparent

0 votes
asked Nov 10, 2021 in Bug by anonymous

Setting "skinparam SequenceReferenceBackgroundColor transparent" is not effective.

@startuml Transaction

skinparam SequenceReferenceBackgroundColor transparent

participant ":Customer" as customer

participant ":Cashier" as cashier

participant ":Database" as database

ref over customer, database : Open Account

@enduml

1 Answer

0 votes
answered Nov 10, 2021 by The-Lu (64,760 points)
 
Best answer

Hello A.,

You could use style instead, as:

@startuml
<style>
Reference {
  BackgroundColor transparent
}
</style>

participant ":Customer" as customer
participant ":Cashier" as cashier
participant ":Database" as database

ref over customer, database : Open Account
@enduml

See some help here:

If that can help,
Regards,
Th.

commented Nov 11, 2021 by anonymous
Thank you so much !
...