LinkAdjusting

StockSharp.Xaml.Diagram.GXDiagram

This enumeration describes how a Route computes its points.

Fields

End
public const LinkAdjusting End
value = LinkAdjusting.End

When there are more than the standard number of points in the route, or if the route is orthogonal, just modify the end points, while leaving the intermediate points unchanged. This style maintains orthogonality for orthogonal links.

None
public const LinkAdjusting None
value = LinkAdjusting.None

Always discards any old points and recomputes all points according to standard policies.

Scale
public const LinkAdjusting Scale
value = LinkAdjusting.Scale

When there are more than the standard number of points in the route, scale and rotate the intermediate points so that the link's shape stays approximately the same. This style, implemented by Point), does not maintain the horizontal and vertical line segments of an orthogonal link. Orthogonal links with this adjusting style will instead recalculate the standard route path, as if the adjusting style were None.

Stretch
public const LinkAdjusting Stretch
value = LinkAdjusting.Stretch

When there are more than the standard number of points in the route, linearly interpolate the intermediate points along the X and Y dimensions between the ports. This style, implemented by Point), does not maintain the horizontal and vertical line segments of an orthogonal link. Orthogonal links with this adjusting style will instead only modify the end points of the existing path, as if the adjusting style were End.