d3js折线图错误 - 绘制奇怪的区域

时间:2013-10-23 17:12:08

标签: d3.js linechart

我找不到有类似问题的人,也没有线索解决我阅读文档和其他问题的问题,所以我希望有人可以帮助我。

这是我的代码(从documentation example复制)

var margin = {top: 20, right: 20, bottom: 30, left: 150},
width = document.getElementById("aapp_content_charts").clientWidth - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;

var x = d3.time.scale()
.range([0, width]);

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

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

var yAxis = d3.svg.axis()
.scale(y)
.orient("left");

var line = d3.svg.line()
.x(function(d) { return x(d3.time.year(parseDate(d[0]))); })
.y(function(d) { return y(d[1]); });

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


x.domain(d3.extent(list_indicators_3years_absolute['Gastos en activos financieros'] , function(d) { return parseDate(d[0]);}));
y.domain(d3.extent(list_indicators_3years_absolute['Gastos en activos financieros'] , function(d) { return d[1];}));

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

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

svg.append("path")
  .datum(list_indicators_3years_absolute['Gastos en activos financieros'])
  .attr("class", "line")
  .attr("d", line);

现在,您想知道我的变量如何列出[' list_indicators_3years_absolute [' Gastos en activos financieros']'看起来像:

  • 来自console.log:

[Array 2,Array 2,Array 2] 0:数组2 0:" 2010" 1:0 长度:2 proto :数组[0] 1:数组2 0:" 2011" 1:29999996.8 长度:2 proto :数组[0] 2:数组2 0:" 2012" 1:79204931.01 长度:2 proto :数组[0] 长度:3 proto :数组[0]

  • 变量的更直观的例子: enter image description here

是的,三年(x轴)只有3分:2010年,2011年,2012年

这里的错误" line"图表看起来像:

enter image description here

我认为错误存在于我的变量结构中,但我没有得到任何警告或线索以找出问题所在。实际上,两个轴都设置和标记正确,并且三个点也是如此。奇怪的是,这条线似乎是从最后一点到第一点关闭,并填满了。

: - MMMMM

提前致谢!

1 个答案:

答案 0 :(得分:15)

您似乎错过了该示例中的<style>部分。 fill: none告诉 行从最后一个点到第一个点关闭:

.line {
  fill: none;
  stroke: steelblue;
  stroke-width: 1.5px;
}

你告诉它使用这个类:

.attr("class", "line")

但如果引用的CSS或内联样式中不存在“line”,您将获得默认的填充行为。

另请参阅:D3.js tree with odd number of vertices, edges not shown