antv G6 如何刷新改变节点上绑定的数据值呢?
findById找到你要更新的节点,然后update就行了一般两种方式:
findById
update
// 1 const model = { id: 'node', label: 'node', address: 'cq', x: 200, y: 150, style: { fill: 'blue' } } // 通过ID查询节点实例 const item = graph.findById('node') graph.updateItem(item, model) // 2 const model = { id: 'node', type: 'rect', label: 'node', style: { fill: 'red', }, }; const item = graph.findById('node') item.update(model);
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
findById
找到你要更新的节点,然后update
就行了一般两种方式: