Trying to resolve an issue where the layout is not refreshing for a Node drag when the diagram has the Layout property set to HierarchicalTree in the Controller. When dragging a node, the line connector does not follow and stays in its initial position. I looked for a RefreshLayout() javascript call in your documentation I could use, but couldn't find anything recent. Here is what I have below:
<controller.cs>
_model.Layout.Type = LayoutTypes.HierarchicalTree;
_model.Layout.Orientation = LayoutOrientations.TopToBottom;
_model.Layout.VerticalSpacing = 30;
_model.Layout.HorizontalSpacing = 30;
_model.Layout.FixedNode = "HOME";
The diagram responds correctly when the code above is commented out.
Thanks.
-Ryan Obbink