Hi,
We have a group type node that has dropShadows enabled same as all other nodes and it seems to create an infinitely growing shadow when scrolling over the diagram. Any ideas where this stems from?
$(go.Group,
'Auto',
{
background: 'transparent',
ungroupable: true,
margin: new go.Margin(10),
movable: false,
deletable: false,
shadowOffset: new go.Point(0, 3),
shadowColor: this.colors.shadowColor,
shadowBlur: 6,
selectable: false,
shadowVisible: true,
// when the selection is dropped into a Group, add the selected Parts into that Group;
// if it fails, cancel the tool, rolling back any changes
handlesDragDropForMembers: false, // don't need to define handlers on member Nodes and Links
// Groups containing Groups lay out their members horizontally
layout: $(go.GridLayout, {
wrappingColumn: 1,
alignment: go.GridLayout.Position,
cellSize: new go.Size(1, 1),
spacing: new go.Size(4, 4)
})
},