2017-07-30 1 views

答えて

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' 
     } 
    }); 
+0

パーフェクトにすべてのリンクのためのデフォルトを設定することができ、ありがとうございました!! –

関連する問題