I am using the following code to connect shapes on the diagram and it is working, but because the connection point is set as center you can not see the arrows. Is there a way to find the “closest” connectionpoint and use that for the linking?
var conid = diagram.AddShape(shape, "Dynamic connector", NewPage.ID);
// Set dynamic connector appearance
shape.SetConnectorsType(Aspose.Diagram.ConnectorsTypeValue.StraightLines);
NewPage.ConnectShapesViaConnector(Shapes[c.Start_ID].ID, Aspose.Diagram.Manipulation.ConnectionPointPlace.Center, Shapes[c.End_ID].ID, Aspose.Diagram.Manipulation.ConnectionPointPlace.Center, conid);