我注意到使用当前不稳定分支(2.7.0-unstable)时缺少边缘源或目标箭头。下面是标准的cy演示。这是一个已知问题还是有变化?
答案 0 :(得分:22)
The default stylesheet was updated in 2.7默认情况下具有更高的性能。这意味着默认情况下使用haystack edges,而干草堆仅支持中箭头。
如果将样式表中的边缘设置为贝塞尔曲线,则可以使用源箭头和目标箭头,例如
edge {
curve-style: bezier;
target-arrow-shape: triangle;
}
答案 1 :(得分:0)
像这样使用。
cy.edges('edge').style({
"curve-style": "bezier",
"target-arrow-shape": "triangle"
})