边缘目标箭头在Cytoscape.js中不起作用> = 2.7.0

时间:2016-06-14 21:39:39

标签: cytoscape.js

我注意到使用当前不稳定分支(2.7.0-unstable)时缺少边缘源或目标箭头。下面是标准的cy演示。这是一个已知问题还是有变化?

2 个答案:

答案 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"
})