问题描述:在使用antVX6的过程中,有时候重选渲染会出现阴影残留。 解决: 每次重新渲染画布时,使用 clearCells API清除一下画布即可解决。 ... const graph = new Graph({ container: document.getElementById("app"), width: 600, height: 400, grid: true, }) // 清空画布 graph.clearCells() ...