我的图表中的x间隔未显示。我相信这可能是因为我的日期解析不起作用。任何人都有任何线索有什么不对?谢谢!
csv文件只有两列。后者的名称为“actionat”,是具有日期和时间的。 y列似乎正在工作,因为间隔显示在图表上。
<!-- 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},
width = 600 - margin.left - margin.right,
height = 270 - margin.top - margin.bottom;
// 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 yAxis = d3.svg.axis().scale(y)
.orient("left").ticks(5);
// 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 + ")");
// Parse the date / time
var parseDate = d3.time.format("%m-%d-%Y %H:%M").parse;
// Get the data
d3.csv("3E8 Score and Date - Sheet1.csv", function(error, data) {
data.forEach(function(d) {
d.actionat = parseDate(d.actionat.toString());
d.studenttotalscore = +d.studenttotalscore;
});
// Define the line
var valueline = d3.svg.line()
.x(function(d) { return x(d.actionat); })
.y(function(d) { return y(d.studenttotalscore); });
// Scale the range of the data
x.domain(d3.extent(data, function(d) { return d.actionat; }));
y.domain([0, d3.max(data, function(d) { return d.studenttotalscore; })]);
// 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>
答案 0 :(得分:1)
因此,在仔细检查我的代码之后,它似乎只是一个语法问题。 CSV文件日期的格式如下,例如,2015年1月20日19:20。我只需要更改以下代码行:
var parseDate = d3.time.format("%m-%d-%Y %H:%M").parse;
到此:
var parseDate = d3.time.format("%m/%d/%Y %H:%M").parse;