Hello,
I have a Top-to-Bottom digram and I'm trying to connect a node to another node, making the connector starting from the bottom side of the source and ending in the top side of the target, the result will be a "loop".
Is this possible to achieve?
This is my diagram layout manager:
public LayoutManager LayoutManager { get; set; } = new LayoutManager()
{
Layout = new DirectedTreeLayout()
{
Type = LayoutType.Hierarchical,
Orientation = TreeOrientation.TopToBottom,
AvoidSegmentOverlapping = true,
HorizontalSpacing = 150,
VerticalSpacing = 50
},
RefreshFrequency = RefreshFrequency.ArrangeParsing
};
Thank you