在v4中拖动时尝试链接对象和文本 [英] Trying to link object and text when dragging in v4

查看:42
本文介绍了在v4中拖动时尝试链接对象和文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一直在尝试学习有关 d3.drag 的知识,以将其集成到sankey中v4的图表类似于此示例.

I have been trying to learn enough about d3.drag to integrate it into a sankey diagram for v4 similar to this example.

起点是Mikes圈拖动示例此处,我试图与该对象集成+文本拖动实现此处.

The start point was Mikes circle dragging example here which I tried to integrate with the object+text drag implementation here.

可悲的是,我无法完全弄清楚如何使用d3.drag来获取'g'元素.

Tragically I can't quite work out how to grab the 'g' element using d3.drag.

过去几天有几次迭代,但是我认为最接近的是下面的示例,该示例仅会抓取一个特定的矩形进行拖动(我怀疑我可能已经弃用了"this").

There have been several iterations over the past few days, but I think the closest I have come is the example below which will only grab a specific rectangle for dragging (I suspect I may have butchered the use of 'this').

var margin = {top: 10, right: 10, bottom: 30, left: 10},
    width = 960 - margin.left - margin.right,
    height = 500 - margin.top - margin.bottom;

var rectangles = d3.range(20).map(function() {
  return {
    x: Math.round(Math.random() * (width)),
    y: Math.round(Math.random() * (height))
  };
});

var color = d3.scaleOrdinal(d3.schemeCategory20);

var svg = d3.select("body").append("svg")
    .attr("width", width + margin.left + margin.right)
    .attr("height", height + margin.top + margin.bottom);

var group = svg.append("g")
  .data(rectangles)
  .attr("transform", 
     "translate(" + margin.left + "," + margin.top + ")")
      .call(d3.drag()
        .on("start", dragstarted)
        .on("drag", dragged)
        .on("end", dragended));

group.selectAll("rect")
  .data(rectangles)
  .enter().append("rect")
    .attr("x", function(d) { return d.x; })
    .attr("y", function(d) { return d.y; })
    .attr("height", 60)
    .attr("width", 30)
    .style("fill", function(d, i) { return color(i); });

group.selectAll("text")
  .data(rectangles)
  .enter().append("text")
    .attr("x", function(d) { return d.x; })
    .attr("y", function(d) { return d.y; })
      .attr("text-anchor", "start")
      .style("fill", "steelblue")
      .text("Close");

function dragstarted(d) {
  d3.select(this).raise().classed("active", true);
}

function dragged(d) {
  d3.select(this).select("text").attr("x", d.x = d3.event.x).attr("y", d.y = d3.event.y);
  d3.select(this).select("rect").attr("x", d.x = d3.event.x).attr("y", d.y = d3.event.y);
}

function dragended(d) {
  d3.select(this).classed("active", false);
}

.active {
  stroke: #000;
  stroke-width: 2px;
}

.rect {
  pointer-events: all;
  stroke: none;
  stroke-width: 40px;
}

<script src="//d3js.org/d3.v4.min.js"></script>

我尝试按照此处是一个非常相似的例子,但是与从力图移动有关的变化也使我感到失望.

I tried to implement the code per the answer here which is a close analog, but the changes involved with moving from the force diagram defeated me as well.

任何指导表示赞赏.我觉得我缺少一些基本知识.

Any guidance appreciated. I feel like I'm missing something fundamental.

推荐答案

我稍微调整了一下代码.我将矩形和文本都分组了,并将drag属性添加到该组中.因此,当我们拖动时,文本和矩形都会在接收器中移动.

I tweaked your code a little. I grouped both rectangles and text and added the drag attribute to the group. So, when we drag, both text and rectangle move in sink.

	var margin = {top: 10, right: 10, bottom: 30, left: 10},
    width = 960 - margin.left - margin.right,
    height = 500 - margin.top - margin.bottom;

var rectangles = d3.range(10).map(function() {
  return {
    x: Math.round(Math.random() * (width)),
    y: Math.round(Math.random() * (height))
  };
});

var color = d3.scaleOrdinal(d3.schemeCategory20);

var svg = d3.select("body").append("svg")
    .attr("width", width + margin.left + margin.right)
    .attr("height", height + margin.top + margin.bottom);

var group = svg.selectAll('g')
	.data(rectangles).enter().append("g").attr("transform", 
     "translate(" + margin.left + "," + margin.top + ")")
      .call(d3.drag()
        .on("start", dragstarted)
        .on("drag", dragged)
        .on("end", dragended));

group.append("rect")
    .attr("x", function(d) { return d.x; })
    .attr("y", function(d) { return d.y; })
    .attr("height", 60)
    .attr("width", 30)
    .style("fill", function(d, i) { return color(i); });
	
group.append("text")
    .attr("x", function(d) { return d.x; })
    .attr("y", function(d) { return d.y; })
      .attr("text-anchor", "start")
      .style("fill", "steelblue")
      .text("Close");	
		
function dragstarted(d) {
  d3.select(this).raise().classed("active", true);
}

function dragged(d) {
  d3.select(this).select("text").attr("x", d.x = d3.event.x).attr("y", d.y = d3.event.y);
  d3.select(this).select("rect").attr("x", d.x = d3.event.x).attr("y", d.y = d3.event.y);
}

function dragended(d) {
  d3.select(this).classed("active", false);
}

.active {
  stroke: #000;
  stroke-width: 2px;
}

.rect {
  pointer-events: all;
  stroke: none;
  stroke-width: 40px;
}

<script src="//d3js.org/d3.v4.min.js"></script>

希望这会有所帮助.

这篇关于在v4中拖动时尝试链接对象和文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆