# 自定义节点

# Model

# setAttributes

设置节点model中的各类属性。

使用示例:

setAttributes() {
  this.width = 80;
}

# View

# getShape

获取节点的 SVG 元素。

getShape(): h.JSX.Element

# getAttributes

获取节点model中的部分属性,其返回值为数据属性样式属性的合集。

使用示例:

getShape() {
  const attributes = this.getAttributes();
  // ...
}