forked from fanruan/fineui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
920 B
41 lines
920 B
7 years ago
|
# bi.branch_relation
|
||
|
|
||
|
### 表关联树
|
||
|
|
||
|
{% method %}
|
||
|
[source](https://jsfiddle.net/fineui/z5hLcruk/)
|
||
|
|
||
|
{% common %}
|
||
|
```javascript
|
||
|
var tree = BI.createWidget({
|
||
|
type: "bi.branch_relation",
|
||
|
element: 'body',
|
||
|
items: [],
|
||
|
direction: BI.Direction.Right,
|
||
|
align: BI.HorizontalAlign.Right,
|
||
|
centerOffset: -50
|
||
|
});
|
||
|
```
|
||
|
|
||
|
{% endmethod %}
|
||
|
|
||
|
|
||
|
|
||
|
### 参数设置
|
||
|
|
||
|
| 参数 | 说明 | 类型 | 默认值 |
|
||
|
| ------------ | ------- | ------ | -------------------- |
|
||
|
| centerOffset | 重心偏移量 | number | 0 |
|
||
|
| direction | 根节点所在方向 | string | BI.Direction.Bottom |
|
||
|
| align | 对齐方向 | string | BI.VerticalAlign.Top |
|
||
|
| items | 元素 | array | null |
|
||
|
|
||
|
|
||
|
|
||
|
### 方法
|
||
|
|
||
|
| 方法名 | 说明 | 参数 |
|
||
|
| -------- | ---- | ----------- |
|
||
|
| populate | 去掉所有内容 | items: 子项数组 |
|
||
|
|
||
|
------
|