在d3条形图上Y轴被正确切断/不能正确缩放?

时间:2013-08-08 17:13:29

标签: d3.js bar-chart

我无法弄清楚为什么我的y轴被切断了,而我的第一根杆正在超出范围。据我所知,js文件中的所有内容都是正确的。代码如下,但我也为它创建了一个要点。这是一个link to the bl.ocks version

var data;

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

var formatPercent = d3.format(",.0f");

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")
  .tickFormat(formatPercent);

var svg = d3.select("#bar").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 + ")");

d3.json("../data/hopeNums.json", function(json) {
data = json;
x.domain(data.map(function(d) { return d.college; }));
y.domain([0, d3.max(data, function(d) { return d.students; })]);

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

svg.append("g")
  .attr("class", "y axis")
  .call(yAxis)
.append("text")
  .attr("transform", "rotate(-90)")
  .attr("y", 6)
  .attr("dy", ".71em")
  .style("text-anchor", "end")
  .text("Students");

svg.selectAll(".bar")
  .data(json)
.enter().append("rect")
  .attr("class", "bar")
  .attr("id", function(d) { return (d.id); })
  .attr("x", function(d) { return x(d.college); })
  .attr("width", x.rangeBand())
  .attr("y", function(d) { return y(d.students); })
  .attr("height", function(d) { return height - y(d.students); });

 svg.selectAll("rect")
  .on("click", function(d) { d3.select(this).style({fill: '#FAAE0A', stroke: '#F08C00', opacity:'0.5', 'stroke-width':'3px'})});

 });

function type(d) {
  d.students = +d.students;
  return d;
}

1 个答案:

答案 0 :(得分:7)

这是一个类型问题。 在您的数据文件中,'学生'字段是字符串而不是数字,因此比例的最大值计算不正确(例如字符串比较中的“2”>“10”)。

您需要更改数据结构(或在初始加载后进行一些数据转换)或在d3.max回调中转换它,如下所示:

y.domain([0, d3.max(data, function(d) { return +d.students; })]); // note the '+'