我已经采用了D3 Line Graph示例并稍微更改了它以使用本地数据运行。我已经注释掉了data.tsv()并将其替换为var数据数组上的data.forEach(),它应该完成同样的事情。
我正在尝试这个例子,因为我一直遇到线图和日期问题。我最终在线上的NaN很多,然后不会抽签。
我当前的版本只是错误地在x = 0(在轴上)绘制一条垂直线。这是SVG路径:
<path class="line"
d="M0,450
L0,307.85928143712596
L0,72.7544910179639
L0,0
L0,8.083832335329655
L0,30.314371257485206"></path>
我不知道自己错了什么。我只想绘制数据图,数据数组中的5个点。我意识到我可能有一个语法错误(当它被指出时会导致头部冲击)但更重要的是,我可以告诉我不了解D3想要的基于时间的数据。 D3对日期数据需要什么类型,time.format.parse()与javascript日期解析器相比有什么作用?为什么要使用一个而不是另一个?我什么时候可以获得NaN回报和0?
这是我的代码:
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>LGTest</title>
</head>
<style>
body {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.x.axis path {
display: none;
}
.line {
fill: none;
stroke: steelblue;
stroke-width: 1.5px;
}
</style>
<body>
<script src="d3.min.js"></script>
<script>
var data = [
{ date: "24-Apr-07", close: 93.24 },
{ date: "25-Apr-07", close: 95.35 },
{ date: "26-Apr-07", close: 98.84 },
{ date: "27-Apr-07", close: 99.92 },
{ date: "30-Apr-07", close: 99.80 },
{ date: "1-May-07", close: 99.47 }
];
var margin = {top: 20, right: 20, bottom: 30, left: 50},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var formatDate = d3.time.format("%e-%b-%y");
data.forEach(function (d) { d = type(d) });
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 line = d3.svg.line()
.x(function(d) { return x(d.date); })
.y(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.tsv("data.tsv", type, function(error, data) {
// if (error) throw error;
x.domain(d3.extent(data, function(d) { return d.date; }));
y.domain(d3.extent(data, function(d) { return d.close; }));
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 ($)");
svg.append("path")
.datum(data)
.attr("class", "line")
.attr("d", line);
//});
function type(d) {
d.date = formatDate.parse(d.date);
d.close = +d.close;
return d;
}
</script>
</body>
感谢您提供任何帮助,建议,劝告等等。
答案 0 :(得分:2)
我使用了这些数据:
var data = [
{ date: "24-Apr-07", close: 93.24 },
{ date: "25-Apr-07", close: 95.35 },
{ date: "26-Apr-07", close: 98.84 },
{ date: "27-Apr-07", close: 99.92 },
{ date: "30-Apr-07", close: 99.80 },
{ date: "1-May-07", close: 99.47 }
];