我正在尝试使用d3绘制旁边带有标签的圆形元素。 我应该可以在旁边拖动一个带有标签的圆圈。
任何建议表示赞赏。 https://jsfiddle.net/o3yg8sq1/2/
const svg = d3.select('svg'),
width = +svg.attr('width'),
height = +svg.attr('height');
const node = svg.append('g')
.attr('class', 'nodes')
.selectAll('circle')
.data([{1:1},{2:2}])
.enter().append('circle')
.attr('r', 15)
.attr('cx', function (d, i) { return Math.random() * 100; })
.attr('cy', function (d, i) { return Math.random() * 100; })
.call(d3.drag()
.on('drag', dragmove));
svg.selectAll('.nodes')
.append('text')
.text(function(d){return 'test';})
function dragmove(d) {
d3.select(this).attr('cx', d3.event.x);
d3.select(this).attr('cy', d3.event.y);
}
答案 0 :(得分:2)
由于这是D3 v3,正确的功能是:
d3.behavior.drag()
除此之外,要使用相应的文字拖动圆圈,更好的方法是将circle
和text
添加到群组中:
const node = svg.selectAll('.g')
.data([{1:1},{2:2}])
.enter().append('g').attr("transform", function(){
return "translate(" + Math.random() * 100 + ","
+ Math.random() * 100 + ")"
});
node.append("circle").attr('r', 15);
node.append('text')
.attr("dx", 16)
.text("test")
并将拖拽称为该组:
node.call(d3.behavior.drag()
.on('drag', dragmove));
function dragmove(d) {
d3.select(this).attr("transform", function(){
return "translate(" + d3.event.x + "," + d3.event.y + ")"
})
}