Hi Julian,
We have included some common behaviors such as Select,Delete,Drag etc to the Default node constraints. If you need to enable other behaviors such as shadow,AspectRatio,AllowDrop, then add that constraints along with the Default constraints. Also you can refer other competitors such as Visio in which they have disabled the shadow constraints initially. To enable shadow constraints for all nodes, please define it in defaultSettings node property as shown in the below code example
Code example:
$("#diagram").ejDiagram({
defaultSettings: {
node: {
//enable shadow constraints
constraints: ej.datavisualization.Diagram.NodeConstraints.Default | ej.datavisualization.Diagram.NodeConstraints.Shadow,
},
}
});
Regards,
Shyam G