带有自定义条宽

时间:2016-07-16 06:24:07

标签: javascript jquery css d3.js charts

我想在现有的d3条形图中添加新条形图并使其成为实时图形。

我可以看到条形图正在更新,但是当条形图重新缩放时标签不会自动对齐。

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

var x = d3.scale.ordinal()
  .rangeRoundBands([0, width], .1);

var y = d3.scale.linear()
  .range([height, 0]);

var xAxis = d3.svg.axis()
  .scale(x)
  .orient("bottom");

var yAxis = d3.svg.axis()
  .scale(y)
  .orient("left")
  .ticks(10, "%");

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

svg.append("g")
  .attr("class", "x axis")
  .attr("transform", "translate(0," + height + ")")

svg.append("g")
  .attr("class", "y axis")
  .append("text") // just for the title (ticks are automatic)
  .attr("transform", "rotate(-90)") // rotate the text!
  .attr("y", 6)
  .attr("dy", ".71em")
  .style("text-anchor", "end")
  .text("Frequency");

function draw(data) {
  x.domain(data.map(function(d) {
    return d.letter;
  }));
  y.domain([0, d3.max(data, function(d) {
    return d.frequency;
  })]);
var labels = svg
    .selectAll(".bartext")
  .data(data, function(d) {
      return d.letter;
    });
labels
.exit()
.remove();

labels
  .enter()
  .append("text")
  .attr("class", "bartext")
  .attr("text-anchor", "middle")
  .attr("fill", "black")
  .attr("x", function(d, i) {
    return x(d.letter) + 7.5;
  })
  .attr("y", function(d, i) {
    return height + 15;
  })
  .text(function(d, i) {
    return d.letter;
  });
  svg.select(".y.axis").transition().duration(300).call(yAxis)

  var bars = svg.selectAll(".bar").data(data, function(d) {
      return d.letter;
    })
  bars.exit()
    .transition()
    .duration(300)
    .remove();

  bars.enter().append("rect")
    .attr("class", "bar");

  bars.transition().duration(300).attr("x", function(d) {
      return x(d.letter);
    })
    .attr("width", 15)
    .attr("y", function(d) {
      return y(d.frequency);
    })
    .attr("height", function(d) {
      return height - y(d.frequency);
    });
}
var data1 = [{
  "letter": 'A',
  "frequency": .00167
}];

var data2 = [{
  "letter": 'A',
  "frequency": .01167
},{
  "letter": 'I',
  "frequency": .01477
}];

draw(data1);

setTimeout(function() {
  draw(data2);
}, 2000);

https://jsfiddle.net/foh7cgst/

2 个答案:

答案 0 :(得分:2)

以下是selection.enter() documentation的相关部分:

  

var update_sel = svg.selectAll(“circle”)。data(data)

     

update_sel.attr(/ *仅对旧元素进行操作* /)

     

update_sel.enter()。append(“circle”)。attr(/ *对新元素进行操作   只有* /)

     

update_sel.attr(/ *对旧元素和新元素进行操作* /)

     

update_sel.exit()。remove()/ *完成enter-update-exit模式   * /

如您所见,当您附加到输入选择时,后面的操作仅针对附加的新元素。

如果要同时定位新元素和旧元素,则应在输入节点后对更新选择进行操作。

因此,使用draw函数中的示例代码,这个:

labels.enter().append("text")
  .attr("class", "bartext")
  .attr("text-anchor", "middle")
  .attr("fill", "black")
  .attr("x", function(d, i) {
    return x(d.letter) + 7.5;
  })
  .attr("y", function(d, i) {
    return height + 15;
  })
  .text(function(d, i) {
    return d.letter;
  });

应改为:

labels.enter().append("text")
  .attr("class", "bartext")
  .attr("text-anchor", "middle")
  .attr("fill", "black")
  .attr("y", height + 15);

labels
  .attr("x", function(d) {
    return x(d.letter) + 7.5;
  })
  .text(function(d) {
    return d.letter;
  });

答案 1 :(得分:1)

而不是:

labels
  .enter()
  .append("text")
  .attr("class", "bartext")
  .attr("text-anchor", "middle")
  .attr("fill", "black")
  .attr("x", function(d, i) {
    return x(d.letter) + 7.5;
  })
  .attr("y", function(d, i) {
    return height + 15;
  })
  .text(function(d, i) {
    return d.letter;
  });

这样做:

  labels
    .enter()
    .append("text")
    .attr("class", "bartext");
    //update all the bar text.
    svg
    .selectAll(".bartext").attr("text-anchor", "middle")
    .transition().duration(300)
    .attr("fill", "black")
    .attr("x", function(d, i) {
      return x(d.letter) + 7.5;
    })
    .attr("y", function(d, i) {
      return height + 15;
    })
    .text(function(d, i) {
      return d.letter;
    });

在第一种情况下,它不起作用,因为属性将仅针对新数据进行更新,更新的数据将不会更新到DOM。

工作代码here