重新计算连接点

时间:2016-06-29 14:38:21

标签: javascript gojs

我正在使用自定义'points'绑定来生成自定义线点。点的开始和结束总是从节点的顶点开始。

它是否可以通过GoJS重新计算线,因此位置不会重叠,而是最接近点(即给定示例中的BR到BL)

enter image description here

1 个答案:

答案 0 :(得分:0)

尝试设置

// Used as a value for {@link Link#adjusting},
// to indicate that the link route computation should keep the
// intermediate points of the previous route, just modifying the first and/or last points;
theLink.adjusting = go.Link.End;

然后重新计算链接路线。

theLink.invalidateRoute();