1

リンク(ダブルリンク)間の距離を伸ばす方法は?

myDiagram.linkTemplate=
    $(go.Link,  // the whole link panel
        $(go.Shape,  // the link shape
            { isPanelMain: true,
                stroke: "black" }),
        $(go.Shape,  // the arrowhead
            { toArrow: "standard",
                stroke: null }),
        $(go.Panel, "Auto",
            $(go.Shape,  // the link shape
                { fill: radgrad, stroke: null }),
            $(go.TextBlock,  // the label
                { textAlign: "center",
                    font: "10pt helvetica, arial, sans-serif",
                    stroke: "#919191",
                    margin: 4 },
                new go.Binding("text", "text"))
         )
     );

http://jsfiddle.net/66ENu/

4

1 に答える 1

1

の値を切り替えますlink.curviness:

myDiagram.linkTemplate=
    $(go.Link,  // the whole link panel
      { curviness: 20 },
      // ... rest of link template

API の Link.curvines を参照してください

于 2014-07-29T14:36:50.120 に答える