biswa
#1
I am using
myDiagram =
$(go.Diagram, “myDiagramDiv”, {
“grid.visible”: true,
“allowDrop”: true,
“undoManager.isEnabled”: true,
hoverDelay: 1,
layout: $(go.LayeredDigraphLayout)
});
When I drag & drop a component the diagram is auto arranging positions in diagram.
How to Stop auto Rearranging nodes after drag & drop?
walter
#2
Set Layout.isOngoing to false.
More discussion is at GoJS Layouts -- Northwoods Software
1 Like
biswa
#3
Link are not connected with exact ports.
simon
#4
Did you set up ports with portId
and does the model have the port data?
biswa
#5
I got the point.
Thanks a lot.