Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以遍历我添加到图表中的所有圆形元素?例如,假设我在具有特定 id 值的图上创建了四个圆圈。如果我想找到一个具有特定 id 的圆形元素,我应该怎么做呢?
你会做类似的事情
svg.selectAll("circle").filter(function(d) { return d.id == myid; });
假设您已将数据绑定到包含.id属性的圆圈。
.id