{
curve: go.Link.Bezier,
curviness: 1500,
adjusting: go.Link.Stretch,
toShortLength: 3,
}
this.myDiagram.groupTemplate =
this.$(go.Group, 'Vertical',
{
layout: this.$(go.TreeLayout,
{
angle: 90,
arrangement: go.TreeLayout.ArrangementHorizontal,
isRealtime: false,
}),
isSubGraphExpanded: true,
},
this.$(go.Panel, 'Auto',
this.$(go.Shape, 'RoundedRectangle', // surrounds the Placeholder
{
parameter1: 14,
fill: 'rgba(128,128,128,0)',
stroke: 'rgba(1, 1, 1, 0)',
}),
this.$(go.Placeholder, // represents the area of all member parts,
{ padding: 5 }), // with some extra padding around them
),
this.$(go.Panel, 'Horizontal'),
);
如上组里的链接关系设置了Bezier曲线方式却无效,将组中的布局方式改变也同样无效,请问如何才能正确设置呢?