gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 05:31:23 24 4
gpt4 key购买 nike

我一直无法找到有类似问题的人,也没有线索可以解决我阅读文档和其他问题的问题,所以我希望有人能在这里帮助我。

这是我的代码(从 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']' 的样子:
  • 从控制台日志:

  • [数组 2 , 数组 2 , 数组 2 ]
    0:数组 2
    0:“2010”
    1:0
    长度:2
    原型(prototype) : 数组[0]
    1:数组 2
    0:“2011”
    1:29999996.8
    长度:2
    原型(prototype) : 数组[0]
    2:数组 2
    0:“2012”
    1:79204931.01
    长度:2
    原型(prototype) : 数组[0]
    长度:3
    原型(prototype) : 数组[0]
  • 一个更直观的变量示例:
    enter image description here

  • 是的,只有 3 个点,三年(x 轴):2010、2011、2012

    错误“折线”图表如下所示:

    enter image description here

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

    :-嗯嗯

    提前致谢!

    最佳答案

    看来您缺少 <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

    关于d3.js - d3js折线图错误 - 绘制奇怪的区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19548095/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com