无法在d3.js折线图中获取日期时间值

时间:2016-03-02 09:25:55

标签: javascript d3.js graph

我是D3.js的新手。在D3.js中创建折线图时我遇到两个问题。

一个是,我尝试使用以下输入值在D3.js中创建折线图。在我的输出图形X轴中,我没有得到输入文件中存在的日期和时间。我不明白在创建图形时如何将日期解析为某种格式。我不知道如何将日期解析成某种格式,以便在我的图表x轴中获得时间日期。

文件名:lne1-data.csv

date,value
1-May-12 7:30,58.13
30-Apr-12 8:30,53.98
27-Apr-12 9:10,67.00
26-Apr-12 10:20,89.70
25-Apr-12 11:00,99.00
24-Apr-12 12:30,130.28
23-Apr-12 13:20,166.70
20-Apr-12 14:40,234.98
19-Apr-12 15:10,345.44

我的代码:

<!DOCTYPE html>
<meta charset="utf-8">
<style> /* set the CSS */

body { font: 12px Arial;}

path { 
    stroke: steelblue;
    stroke-width: 2;
    fill: none;
}

.axis path,
.axis line {
    fill: none;
    stroke: grey;
    stroke-width: 1;
    shape-rendering: crispEdges;
}

</style>
<body>

<!-- load the d3.js library -->    
<script src="http://d3js.org/d3.v3.min.js"></script>

<script>

// Set the dimensions of the canvas / graph
//var margin = {top: 30, right: 20, bottom: 30, left: 50},
var margin = {top: 30, right: 40, bottom: 70, left: 50},  
  width = 1600 - margin.left - margin.right,
    height = 270 - margin.top - margin.bottom;

// Parse the date / time
var parseDate = d3.time.format("%d-%b-%y %H:%M").parse;

// Set the ranges
var x = d3.time.scale().range([0, width]);
var y = d3.scale.linear().range([height, 0]);

// Define the axes
//var xAxis = d3.svg.axis().scale(x)
  //  .orient("bottom").ticks(5);

    var xAxis = d3.svg.axis().scale(x)
    .orient("bottom").ticks(6)
    .tickFormat(d3.time.format("%Y-%m-%d %H:%M"));

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

// Define the line
var valueline = d3.svg.line()
    .x(function(d) { return x(d.date); })
    .y(function(d) { return y(d.close); });

// Adds the svg canvas
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 + ")");

// Get the data
d3.csv("lne1-data.csv", function(error, data) {
    data.forEach(function(d) {
        d.date = parseDate(d.date);
        d.close = +d.close;
    });

    // Scale the range of the data
    x.domain(d3.extent(data, function(d) { return d.date; }));
    y.domain([0, d3.max(data, function(d) { return d.close; })]);

    // Add the valueline path.
    svg.append("path")
        .attr("class", "line")
        .attr("d", valueline(data));



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

    // Add the Y Axis
    svg.append("g")
        .attr("class", "y axis")
        .call(yAxis);

});

</script>
</body>

我的输出图:

enter image description here

而不是上面的图表,我需要一个图表,该图表应该在X轴上具有时间日期。我需要做些什么才能获得时间?

另一个是,我需要绘制一条垂直线来制作两个单独的部分,如预切换,在特定日期的图表中进行切换。

EG。我需要在“2012年4月25日11:00”日期的垂直线

如何解决这个问题?有人可以帮我解决这些问题吗?

0 个答案:

没有答案