Make links not to overlap each other

Hi,
I’m using GoDiagram .NET Windows Forms control to display a network of objects. Sometime two objects (A and B) have two links between them, say L1 and L2.

Currently when that happen in the diagram the two links overlap and only the top-most link is actually display and active for interaction.
I would like to know to to make sure the both of the links will be visible and interactive. Also how to make it so that any number of link between the two objects will be visible?
Thank you,
Ido.
It depends on the type of node and link you are using...
Take a look at the StateCharter sample. See what it does in this situation. It modifies the Curviness property in the goView1_LinkCreated event.

Thanks, that’s look like what I was looking for.

Ido.