4

我是一个 D3 新手,在这个库上的速度很慢。我试图让这个简单的 D3 面积图工作,但在显示它自己的实际面积时遇到了一些问题。我可以让轴正确显示数据的正确范围,但图表本身没有显示区域。

我正在向它提供看起来像这样的 JSON 数据,并且它似乎正在尽我所能地消耗数据。

[{"Date":"Date","Close":"Close"},{"Date":"20130125","Close":"75.03"},{"Date":"20130124","Close":"75.32"},{"Date":"20130123","Close":"74.29"},{"Date":"20130122","Close":"74.16"},{"Date":"20130118","Close":"75.04"},{"Date":"20130117","Close":"75.26"},{"Date":"20130116","Close":"74.34"},{"Date":"20130115","Close":"76.94"},{"Date":"20130114","Close":"76.55"}]

这是我的代码

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

    var parseDate = d3.time.format("%Y%m%d").parse;

    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");

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

    var area = d3.svg.area()
        .x(function(d) { return x(d.Date); })
        .y0(height)
        .y1(function(d) { return y(d.Close); });

    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 + ")");

    d3.json('JSONstockPriceOverTime.php', function (data) {
      data.forEach(function(d) {
        d.Date = parseDate(d.Date);
        d.Close = +d.Close;
      });

    x.domain(d3.extent(data, function(d) { return d.Date; }));
    y.domain([0, d3.max(data, function(d) { return d.Close; })]);

    svg.append("path")
      .datum(data)
      .attr("class", "area")
      .attr("d", area);

    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("Price ($)");
    });

我应用了这种风格

        <style>

        body {
          font: 10px sans-serif;
        }

        .axis path,
        .axis line {
          fill: none;
          stroke: #000;
          shape-rendering: crispEdges;
        }

        .area {
          fill: steelblue;
        }


    </style>
4

1 回答 1

4

移除 json (JSONstockPriceOverTime.php) 文件的开始部分;

{"Date":"Date","Close":"Close"},

由于它具有定义为 json 格式的一部分的“日期”和“关闭”变量,因此您不需要像 csv 文件那样包含标头信息,并将“错误”添加到 json 加载行中

d3.json("JSONstockPriceOverTime.php", function(error, data) {

你应该全力以赴(为我工作)。

你正在取得良好的进展。

于 2013-01-28T17:32:54.727 回答