来自csv数据的XAxis时间刻度

时间:2015-11-30 17:03:56

标签: javascript csv d3.js

虽然我已经阅读了几个关于这个主题的帖子,但我可以申请我的案例。我的数据来源是来自网址的csv格式。当我使用d3.js代表他们时,X轴显示确切的分钟。怎么能代表每30分钟的时间段? 时间格式csv url数据:

created_at,entry_id,field1,field2
2015-11-24 10:39:37 UTC,1049233,4,10
2015-11-24 11:09:37 UTC,1049234,0,10
2015-11-24 11:39:36 UTC,1049235,2,12

,所以: X轴:--- 10:39 ----------- 11:09 ----------- 11:39 ----------

我的对象:

X轴:--- 10:30 ----------- 11:00 ----------- 11:30 ---------- -

这是我正在使用的代码:

var margin = { top: 20, right: -30, bottom: 120, left: 40 },
        width = 700 - margin.left - margin.right,
        height = 350 - margin.top - margin.bottom;

    // Parse the date / time
    var parseDate = d3.time.format("%Y-%m-%d %H:%M:%S UTC").parse;

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

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



    var xAxis = d3.svg.axis()
        .scale(x)
        .orient("bottom")
        .tickFormat(d3.time.format,30)
        .tickFormat(function(d) { return d3.time.format('%H:%M')(new Date(d)) })

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

和csv数据:

d3.csv("https://website/dat.csv",
        function (error, data) {
        data.forEach(function (d) {
            d.date = (d.created_at);
            d.value = +d.field1;
            console.log(d.value);
        });

        x.domain(data.map(function (d) { return d.date; }));
        y.domain([0, d3.max(data, function (d) { return d.value; })]);

        svg.append("g")
            .attr("class", "x axis")
            .attr("transform", "translate(7," + height + ")")
            .call(xAxis)
          .selectAll("text")
            .style("text-anchor", "end")
            .attr("dx", "-.9em")
            .attr("dy", "-.55em")
            .attr("transform", "rotate(-90)");

        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("Nº Personas");

        svg.selectAll("bar")
            .data(data)
            .enter().append("rect")
            .style("fill", "steelblue")
            .attr("x", function (d) { return x(d.date); })
            .attr("width", x.rangeBand())
            .attr("y", function (d) { return y(d.value); })
            .attr("height", function (d) { return height - y(d.value); });
    });

提前致谢。

1 个答案:

答案 0 :(得分:1)

如果你确定数据是hh:3m格式,你可以使用

enter code here

(您明白了,即使数据采用其他格式,您也可以在函数内部进行更改并以所需格式返回)