# 自定义连线
# Model
# setAttributes
设置连线model
中的属性。
使用示例:
setAttributes() {
this.stroke = '#999999';
}
# View
# getShape
获取连线的 SVG 元素。
getShape(): h.JSX.Element
# getAttributes
获取连线model
中的属性,其返回值为数据属性和样式属性的合集。
使用示例:
getShape() {
const attributes = this.getAttributes();
// ...
}
← 自定义节点