Search
Diagram.linkCrossings Property
See Also
 





Gets or sets a value indicating how to render the intersection points of links.

Namespace: MindFusion.Diagramming
File: Diagram.js

 Syntax

JavaScript  Copy Code

get linkCrossings() {}
set linkCrossings(value) {}

 Property Value

LinkCrossings

A member of the LinkCrossings enumeration. The default value is Straight.

 Remarks

Intersection points where links cross each other's paths can be rendered as arcs or cuts, depending on the value of this property. The diagram z-order defines which links jump over the others or which links are cut by the others. If linkCrossings is set to Arcs, links with higher zIndex jump over those with lower zIndex. If set to Cut, segments of links at lower z-position are cut by links at higher z-position. Radius of arcs and cuts can be set via the crossingRadius property.

 See Also