Hi!
I have an Adornment and if I’m not setting regular non transparent color to Adornment background, shadow props taking no effect.
What I’m doing wrong?
goMake(
go.Adornment,
go.Panel.Spot,
{
background: 'transparent',
isShadowed: true,
shadowVisible: true,
shadowOffset: new go.Point(0, 2),
shadowColor: 'rgba(0, 0, 0, 0.06)',
shadowBlur: 6,
desiredSize: new go.Size(112, 108),
},
goMake(go.Placeholder, {
isActionable: true, // needed because this is in a temporary Layer
}),
...
)