Hi
I'm using syncfusion v:20.4.0.44 / visual studio 2022 / .Net 6
When a node drops on the diagram it will move to specific coordinates
The problem is when it moves a shade of node remains in the drop area until a click or scroll happens then the shade disappears!!!
for example :
node drops in point a and then moves to B. But a shade of node remains in A (dropped area)
I use this code to Move added node:
{
var dyCoordinate = -(addedNode.PinPoint.Y - BaseYLine);
var nodeColl = new NodeCollection {addedNode};
diagram.MoveNodes(nodeColl, 0.0F, dyCoordinate, MeasureUnits.Pixel);
}
I don't want to display this shade !
2- there is something that I don't understand is :
move Node method returns False But the node Moves correctly to the location I want.
I don't get why this returns False.
Thanks.
Best Regards