defaultDirection: go.LayoutDirection.Right 这个加在什么位置
时间: 2024-02-06 19:12:33 浏览: 67
`defaultDirection: go.LayoutDirection.Right` 这行代码应该加在 `ContinuousForceDirectedLayout` 的构造函数中,具体可以放在这个构造函数的最后面。代码示例如下:
```
function ContinuousForceDirectedLayout() {
go.ForceDirectedLayout.call(this);
this._isObserving = false;
this.defaultDirection = go.LayoutDirection.Right; // 添加这行代码
}
```
这样就可以将节点排列方向设置为水平排列了。
阅读全文