答案 0 :(得分:1)
链接连接器是您正在寻找的东西。
您调整特定链接:
link.set('connector', { name: 'normal' });
link.set('connector', { name: 'smooth' });
link.set({name : 'rounded', args:{radius: 50}});
或者您可以为图表中的所有链接设置默认值
var paper = new joint.dia.Paper({
width: 800,
height: 800,
gridSize: 1,
model: graph,
defaultConnector: {
name: 'smooth'
}
});