g6/packages/site/docs/apis/data/NodeUserModel.zh.md

151 lines
4.8 KiB
Markdown
Raw Normal View History

2023-11-07 17:40:38 +08:00
---
2023-11-10 12:42:25 +08:00
title: NodeUserModel
2023-11-07 17:40:38 +08:00
order: 3
---
2023-11-10 12:42:25 +08:00
用户输入数据中,每一项节点类型:
2023-11-07 17:40:38 +08:00
2023-11-10 12:42:25 +08:00
```typescript
interface NodeUserModel {
id: string | number;
data: NodeUserModelData;
}
```
## id
- **是否必须**: 是;
- **类型**: `string|number`
2023-11-07 17:40:38 +08:00
2023-11-10 12:42:25 +08:00
节点的唯一 ID节点创建后ID 不可被修改。
2023-11-07 17:40:38 +08:00
2023-11-10 12:42:25 +08:00
## data
- **是否必须**: 是;
- **类型**: [`NodeUserModelData`](#nodeusermodeldatatype),详细见下文
节点除 ID 以外的的数据,建议存放业务数据。若需要进行数据转换,可通过 Graph 实例的 transform 配置转换函数,见 [Specification.transforms](../graph/Specification.zh.md#transforms)。转换后的数据成为内部流通的数据 Inner Data后续所有地方获取的都是这份内部数据。与渲染有关的可以通过 Graph 实例的节点 mapper 进行映射,见 [Specification.node](../graph/Specification.zh.md#node),该 mapper 的输入是 Inner Data生成的结果 Display Data 只交给渲染器消费,用户不会在任何地方获得。
### NodeUserModelData.type
- **是否必须**: 否;
- **类型**: `string`
2023-11-07 17:40:38 +08:00
节点的渲染类型,可以是已经注册到图类上的节点类型,内置并默认注册的有 `'circle-node'``'rect-node'``'image-node'`。
2023-11-10 12:42:25 +08:00
### NodeUserModelData.x
2023-11-07 17:40:38 +08:00
2023-11-10 12:42:25 +08:00
- **是否必须**: 否;
- **类型**: `number`
2023-11-07 17:40:38 +08:00
节点的 x 轴位置。若未指定节点位置,且未为图实例配置 `layout`(布局),则节点可能被渲染在画布左上角。
2023-11-10 12:42:25 +08:00
### NodeUserModelData.y
2023-11-07 17:40:38 +08:00
2023-11-10 12:42:25 +08:00
- **是否必须**: 否;
- **类型**: `number`
2023-11-07 17:40:38 +08:00
节点的 y 轴位置。若未指定节点位置,且未为图实例配置 `layout`(布局),则节点可能被渲染在画布左上角。
2023-11-10 12:42:25 +08:00
### NodeUserModelData.z
2023-11-07 17:40:38 +08:00
2023-11-10 12:42:25 +08:00
- **是否必须**: 否;
- **类型**: `number`
2023-11-07 17:40:38 +08:00
对于 2D 的图,不需要指定 z 值。若指定可能导致 WebGL 渲染器下节点看不见。在 3D 图中z 值是必须的,代表节点的 z 轴位置。若未指定节点位置,且未为图实例配置 `layout`(布局),则节点可能被渲染在画布左上角。
2023-11-10 12:42:25 +08:00
### NodeUserModelData.visible
2023-11-07 17:40:38 +08:00
2023-11-10 12:42:25 +08:00
- **是否必须**: 否;
- **类型**: `boolean`
2023-11-07 17:40:38 +08:00
节点是否默认展示出来。
2023-11-10 12:42:25 +08:00
### NodeUserModelData.color
2023-11-07 17:40:38 +08:00
2023-11-10 12:42:25 +08:00
- **是否必须**: 否;
- **类型**: `string`
2023-11-07 17:40:38 +08:00
该节点主图形keyShape的主题色值为十六进制字符串。为方便简单配置而提供更多的样式配置应当在 Graph 实例的节点 mapper 中配置 keyShape 以及各种图形的图形样式。
2023-11-10 12:42:25 +08:00
### NodeUserModelData.label
2023-11-07 17:40:38 +08:00
2023-11-10 12:42:25 +08:00
- **是否必须**: 否;
- **类型**: `string`
2023-11-07 17:40:38 +08:00
节点 labelShape 的文本内容。为方便简单配置而提供,更多的样式配置应当在 Graph 实例的节点 mapper 中配置 labelShape 的 text 值或其他图形样式。
2023-11-10 12:42:25 +08:00
### NodeUserModelData.badges
2023-11-07 17:40:38 +08:00
2023-11-10 12:42:25 +08:00
- **是否必须**: 否;
- **类型**:
2023-11-07 17:40:38 +08:00
```typescript
{
position: BadgePosition,
type: 'text' | 'icon',
img?: string, // type 为 'text' 时需要提供
text?: string, // type 为 'icon' 时需要提供
}[];
```
节点四周的徽标配置,其中的可配置的位置 `BadgePosition` 如下。为方便简单配置而提供,更多的样式配置应当在 Graph 实例的节点 mapper 中配置 badgeShapes 的图形样式。
```typescript
BadgePosition: 'rightTop' |
'right' |
'rightBottom' |
'bottomRight' |
'bottom' |
'bottomLeft' |
'leftBottom' |
'left' |
'leftTop' |
'topLeft' |
'top' |
'topRight';
```
2023-11-10 12:42:25 +08:00
### NodeUserModelData.icon
2023-11-07 17:40:38 +08:00
2023-11-10 12:42:25 +08:00
- **是否必须**: 否;
- **类型**:
2023-11-07 17:40:38 +08:00
```typescript
{
type: 'text' | 'icon',
img?: string, // type 为 'text' 时需要提供
text?: string, // type 为 'icon' 时需要提供
}
```
节点中心 icon 的配置。为方便简单配置而提供,更多的样式配置应当在 Graph 实例的节点 mapper 中配置 iconShape 的图形样式。
2023-11-10 12:42:25 +08:00
### NodeUserModelData.anchorPoints
2023-11-07 17:40:38 +08:00
2023-11-10 12:42:25 +08:00
- **是否必须**: 否;
- **类型**: `number[][]`
2023-11-07 17:40:38 +08:00
该节点四周连接图形的位置,也是边连入的位置。若不配置,边则自动寻找节点边缘最近的位置进行连接。例如 `[[0,0.5],[1,0.5]]`,数字表示在 x 或 y 方向上相对于节点主图形keyShape的百分比位置。为方便简单配置而提供更多的样式配置应当在 Graph 实例的节点 mapper 中配置 anchorShapes 的图形样式。
2023-11-10 12:42:25 +08:00
### NodeUserModelData.parentId
2023-11-07 17:40:38 +08:00
2023-11-10 12:42:25 +08:00
- **是否必须**: 否;
- **类型**: `string | number`
2023-11-07 17:40:38 +08:00
在有 combo 的图上表示该节点所属的 combo 的 id。
2023-11-10 12:42:25 +08:00
### NodeUserModelData.isRoot
2023-11-07 17:40:38 +08:00
2023-11-10 12:42:25 +08:00
- **是否必须**: 否;
- **类型**: `boolean`
2023-11-07 17:40:38 +08:00
若要将该份数据作为树图展示,同时使用树图布局时,指定该节点是否为树的根节点之一。
2023-11-10 12:42:25 +08:00
### NodeUserModelData.preventPolylineEdgeOverlap
2023-11-07 17:40:38 +08:00
2023-11-10 12:42:25 +08:00
- **是否必须**: 否;
- **类型**: `boolean`
2023-11-07 17:40:38 +08:00
是否将该节点作为一个障碍物,使 `'polyline-edge'` 类型的边躲避。默认为 `false`