我想在鏈接中自引用形狀。基本上鍊接的來源和目標是相同的。JOINTJS:自引用鏈接中的形狀
這是工作,但該鏈接是由形狀隱藏: https://imageshack.com/i/f2mu7jp
這裏是我想要做什麼: https://imageshack.com/i/mujp9lp
我知道我可以在定義使用「頂點」一個鏈接,但我不知道開始的XY位置和終點
var connect = function(source, sourcePort, target, targetPort) {
var link = new joint.shapes.devs.Link({
source: { id: source.id, selector: source.getPortSelector(sourcePort) },
target: { id: target.id, selector: target.getPortSelector(targetPort) }
});
if(source == target){
console.log(link);
console.log(source);
}
graph.addCell(link);
};
我怎樣才能獲得起點和終點的位置?
謝謝