3

我正在使用 d3 制作堆积条形图。

由于这个先前的问题,我正在使用 parentNode.__ data__.key 将与父节点关联的数据绑定到子节点。

数据是一个数组,每个条都有一个对象(例如“喜欢”)。然后每个对象包含一个值数组,这些值驱动每个条形的各个矩形:

data =  [{
          key = 'likes', values = [
            {key = 'blue-frog', value = 1}, 
            {key = 'goodbye', value = 2}
          ]
        }, {
          key = 'dislikes, values = [
            {key = 'blue-frog', value = 3},
            {key = 'goodbye', value = 4}
          ]
        }]

该图表工作正常,将父指标数据绑定到子 svg 属性也是如此:

// Create canvas
bars = svg.append("g");

// Create individual bars, and append data
// 'likes' are bound to first bar, 'dislikes' to second
bar = bars.selectAll(".bar")
        .data(data)        
        .enter()
        .append("g");

// Create rectangles per bar, and append data
// 'blue-frog' is bound to first rectangle, etc.
rect = bar.selectAll("rect")
        .data(function(d) { return d.values;})
        .enter()
        .append("rect");

// Append parent node information (e.g. 'likes') to each rectangle    
// per the SO question referenced above        
rect.attr("metric", function(d, i, j) {
  return rect[j].parentNode.__data__.key;
});

然后,这允许为每个矩形创建工具提示,例如“喜欢:2”。到目前为止,一切都很好。

问题是如何将相同的信息与点击事件相关联,建立在:

rect.on("click", function(d) {
  return _this.onChartClick(d);
});

// or

rect.on("click", this.onChartClick.bind(this));

这是有问题的,因为 onChartClick 方法需要访问绑定数据 (d) 和图表执行上下文 ('this')。如果不是,我可以切换执行上下文并d3.select(this).attr("metric")在 onChartClick 方法中调用。

我的另一个想法是将指标作为附加参数传递,但在这里使用 function(d, i, j) 的技巧似乎不起作用,因为它在单击事件发生之前不会运行。

你能提出一个解决方案吗?

4

3 回答 3

6

您可以使用闭包来保持对父数据的引用,如下所示:

bar.each(function(dbar) {            // dbar refers to the data bound to the bar
  d3.select(this).selectAll("rect")
      .on("click", function(drect) { // drect refers to the data bound to the rect
        console.log(dbar.key);       // dbar.key will be either 'likes' or 'dislikes'
      });
});

更新:

请参阅下文,了解访问 DOM 结构中不同级别的各种方法。连连看!查看此版本的实时版本并尝试单击 .rect div:http ://bl.ocks.org/4235050

var data =  [
    {
        key: 'likes',
        values: [{ key: 'blue-frog', value: 1 }, { key: 'goodbye', value: 2 }]
    }, 
    {
        key: 'dislikes',
        values: [{ key: 'blue-frog', value: 3 }, { key: 'goodbye', value: 4 }]
    }];

var chartdivs = d3.select("body").selectAll("div.chart")
    .data([data]) // if you want to make multiple charts: .data([data1, data2, data3])
  .enter().append("div")
    .attr("class", "chart")
    .style("width", "500px")
    .style("height", "400px");

chartdivs.call(chart); // chartdivs is a d3.selection of one or more chart divs. The function chart is responsible for creating the contents in those divs

function chart(selection) { // selection is one or more chart divs
  selection.each(function(d,i) { // for each chartdiv do the following
    var chartdiv = d3.select(this);
    var bar = chartdiv.selectAll(".bar")
        .data(d)
      .enter().append("div")
        .attr("class", "bar")
        .style("width", "100px")
        .style("height", "100px")
        .style("background-color", "red");  

    var rect = bar.selectAll(".rect")
        .data(function(d) { return d.values; })
      .enter().append("div")
        .attr("class", "rect")
        .text(function(d) { return d.key; })
        .style("background-color", "steelblue");

    bar.each(function(dbar) {
      var bardiv = d3.select(this);
      bardiv.selectAll(".rect")
          .on("click", function(drect) { 
            d3.select(this).call(onclickfunc, bardiv);
          });
    });

    function onclickfunc(rect, bar) { // has access to chart, bar, and rect
      chartdiv.style("background-color", bar.datum().key === 'likes' ? "green" : "grey");
      console.log(rect.datum().key); // will print either 'blue-frog' or 'goodbye'
    }
  });
}
于 2012-12-07T03:02:16.893 回答
0

rect.on("click", this.onChartClick.bind(this));将不起作用,因为您没有传递函数,而是传递了函数的返回值(通过附加(this))。

如果你想传递this和数据(d),试试这个:

// assuming you have this somewhere earlier
var onChartClick = function () {}

// change your parent click to
rect.on("click", function(d) {
    return onChartClick.call(this, d);
});
于 2012-12-06T20:08:47.837 回答
0

另一种方法可能是传递一个对象/json,或者在我的情况下是一个类实例,它为事件创建该矩形以在内部访问它

var rect = svgContainer.append("rect");
rect.datum(this);
rect.on('click', function(d){
    alert(d);
    alert(d.id); // etc.
});
于 2018-08-03T13:48:34.497 回答