【问题标题】:How to set color of D3 Zoom Packed Circle children如何设置 D3 Zoom Packed Circle 孩子的颜色
【发布时间】:2016-12-07 21:04:07
【问题描述】:

我想在 D3 的压缩圆图中设置子圆的单独颜色。我还希望大小的文本出现在名称文本下。我如何实现这一目标?我在 json 中添加了颜色代码,示例如下。 JSfiddle 的链接是https://jsfiddle.net/smitty1788/9fw51gL1/1/

 {
        "name": "Maryland",
        "children": [{
            "name": "Montgomery",
            "children": [{
                "name": "French",
                "size": 600,
                "fill":"#105908"
            }, {
                "name": "Italian",
                "size": 700,
                "fill":"#59084e"
            }, {
                "name": "Laotian",
                "size": 800,
                "fill":"#f45333"
            }, {
                "name": "African Languages",
                "size": 900,
                "fill":"#fFF000"
            }]
        }

这是 d3 脚本

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

var svg = d3.select("svg"),
    margin = 20,
    diameter = +svg.attr("width"),
    g = svg.append("g").attr("transform", "translate(" + diameter / 2 + "," + diameter / 2 + ")");

var color = d3.scaleLinear()
    .domain([-1, 5])
    .range(["hsl(152,80%,80%)", "hsl(228,30%,40%)"])
    .interpolate(d3.interpolateHcl);

var pack = d3.pack()
    .size([diameter - margin, diameter - margin])
    .padding(2);

d3.json("/flare.json", function(error, root) {
  if (error) throw error;

  root = d3.hierarchy(root)
      .sum(function(d) { return d.size; })
     .sort(function(a, b) { return b.value - a.value; });

  var focus = root,
      nodes = pack(root).descendants(),
      view;

  var circle = g.selectAll("circle")
    .data(nodes)
    .enter().append("circle")
      .attr("class", function(d) { return d.parent ? d.children ? "node" : "node node--leaf" : "node node--root"; })
      .style("fill", function(d) { return d.children ? color(d.depth) : null; })
      .on("click", function(d) { if (focus !== d) zoom(d),      d3.event.stopPropagation(); });

  var text = g.selectAll("text")
    .data(nodes)
    .enter().append("text")
      .attr("class", "label")
      .style("fill-opacity", function(d) { return d.parent === root ? 1 : 0; })
      .style("display", function(d) { return d.parent === root ? "inline" : "none"; })
      .text(function(d) { return d.data.name; });

  var node = g.selectAll("circle,text");

  svg
      .style("background", color(-1))
      .on("click", function() { zoom(root); });

  zoomTo([root.x, root.y, root.r * 2 + margin]);

  function zoom(d) {
    var focus0 = focus; focus = d;

    var transition = d3.transition()
        .duration(d3.event.altKey ? 7500 : 750)
        .tween("zoom", function(d) {
          var i = d3.interpolateZoom(view, [focus.x, focus.y, focus.r * 2 +    margin]);
          return function(t) { zoomTo(i(t)); };
        });

    transition.selectAll("text")
      .filter(function(d) { return d.parent === focus || this.style.display === "inline"; })
        .style("fill-opacity", function(d) { return d.parent === focus ? 1 : 0; })
        .on("start", function(d) { if (d.parent === focus) this.style.display = "inline"; })
        .on("end", function(d) { if (d.parent !== focus) this.style.display = "none"; });
  }

  function zoomTo(v) {
    var k = diameter / v[2]; view = v;
    node.attr("transform", function(d) { return "translate(" + (d.x - v[0]) * k + "," + (d.y - v[1]) * k + ")"; });
    circle.attr("r", function(d) { return d.r * k; });
  }
});

</script>

感谢您的帮助!

【问题讨论】:

  • 您的代码返回了一些 NaN。因此,与其等待人们使用您的代码设置 fiddle/plunker、对数据进行硬编码、调试错误然后才回答您的问题,不如提供一个有效的 fiddle/plunker。这样,人们可以关注您的具体问题,并且您会更快地获得帮助,明白我的意思吗?
  • 谢谢!我已将 JSfiddle 链接添加到主要问题。 jsfiddle.net/smitty1788/9fw51gL1/1
  • 我刚刚写了一个答案......使用工作(或不工作)的小提琴会更容易!
  • 这是一个非常有用的提示。我将开始为我将来遇到的任何问题添加一个小提琴。谢谢!

标签: javascript d3.js


【解决方案1】:

为没有孩子的圈子返回d.data.fill,而不是null

.style("fill", function(d) { return d.children ? color(d.depth) : d.data.fill; })

这是你更新的小提琴(你的彩色圆圈在最右边):https://jsfiddle.net/jv4ku850/

【讨论】:

  • 这太棒了!非常感谢!如果您对最终产品感兴趣,我已经用完整的数据集更新了小提琴。 jsfiddle.net/smitty1788/jv4ku850/1
  • 这是一个很好的答案@GerardoFurtado。除了不在json中为每个单独的孩子添加颜色代码之外,还有其他方法吗?我的意思是有没有一种方法可以自动为相同的孩子分配相同的颜色?
  • @HowardSmith 感谢您提出这个问题。我正在努力解决同样的问题。我有后续问题 - 不是不向 json 中的每个孩子添加颜色代码,还有其他方法吗?我的意思是有没有一种方法可以自动为相同的孩子分配相同的颜色?
猜你喜欢
  • 2018-06-23
  • 2019-12-01
  • 2017-05-18
  • 1970-01-01
  • 2021-06-28
  • 2016-11-07
  • 2015-10-07
  • 2013-12-07
  • 2019-01-13
相关资源
最近更新 更多