Part of Link not shown in diagram after save

Hi,

There is my situation :

We have that kind of diagram before we save :

That’s what we want. So we save our diagram and we close our application. But when we want that diagram again, we re-open our diagram and that’s how it looks :

The bigger rectangle represents the diagram boundaries. As you can see, the link between these two nodes is “cut” by the diagram left boundary.

Is there a way to consider these links when we load the saved diagram ?

Thanks a lot

You might want to save the Diagram.Panel.Position along with your model, and then restore that property in a Diagram.InitialLayoutCompleted event handler.

Hello,

Thanks for the answer. I can update now the position of the panel with this event.
But there is something annoying me. For example :
This code will work well and the diagram will be updated :

                position = new Point(500, 500);
                MyDiagram.Panel.Position = position;

But THIS code won’t update the layout :

                position = new Point(-500, -500);
                MyDiagram.Panel.Position = position;

Why ?

Thanks again for your help.

Perhaps because (-500,-500) is beyond the diagram bounds (Diagram.Panel.DiagramBounds, as opposed to the Diagram.Panel.ViewportBounds), so it can’t scroll there?

I save and load the Diagram.Panel.DiagramBounds and the Diagram.Panel.Position, and it works now.