# 自定义连线

# Model

# setAttributes

设置连线model中的属性。

使用示例:

setAttributes() {
  this.stroke = '#999999';
}

# View

# getShape

获取连线的 SVG 元素。

getShape(): h.JSX.Element

# getAttributes

获取连线model中的属性,其返回值为数据属性样式属性的合集。

使用示例:

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