0

我正在尝试在一个简单的散点图上实现 d3 鱼眼失真( http://bost.ocks.org/mike/fisheye/ )。

这是我到目前为止的代码: http ://plnkr.co/edit/yDWld6?p=preview

我非常不确定我应该如何称呼扭曲的圆圈。目前它看起来像这样,但到目前为止“mousemove”没有任何反应。

svg.on("mousemove", function() {
  fisheye.center(d3.mouse(this));

  circles
    .selectAll("circle")
    .each(function (d) { d.fisheye = fisheye(d); })
    .attr("cx", function (d) { return d.fisheye.pages })
    .attr("cy", function (d) { return d.fisheye.books });
});

谢谢您的帮助!

4

1 回答 1

1

您必须为鱼眼插件准备数据:

var circles = svg.selectAll("circle")
    .data(data)
  .enter()
  .append("circle")
    .datum( function(d) {
        return {x: d.pages, y: d.books} // change data, to feed to the fisheye plugin
    })
    .attr("cx", function (d) {return d.x}) // changed data can be used here as well
    .attr("cy", function (d) {return d.y}) // ...and here
    .attr("r", 2);

...

// now we can pass in the d.x and d.y values expected by the fisheye plugin...
circles.each(function(d) { d.fisheye = fisheye(d); })
    .attr("cx", function(d) { return d.fisheye.x; })
    .attr("cy", function(d) { return d.fisheye.y; })
    .attr("r", function(d) { return d.fisheye.z * 2; });
});

我还根据我在下面链接的 plunk 中使用的插件的最新官方版本对鱼眼的声明进行了更改。

因此,这是一个PLUNK,其散点图应用了鱼眼失真。

于 2014-05-01T15:28:26.200 回答