svg.append("circle")
.data([{ x: 250, y: 250, r: 25 }])
.attr('class', 'draggableCircle')
.attr('cx', function(d) { return d.x; })
.attr('cy', function(d) { return d.y; })
.attr('r', function(d) { return d.r; })
.attr("stroke-width", 0)
.attr("stroke", "black")
.attr("id", guid())
.call(drag)
.style('fill', getRandomColor());
是否有可能将线路/路径挂钩到两个圆圈?
亲切的问候