var heatMap = svg.selectAll(".hour") .data(data) .enter().append("rect") .attr("x", function(d) { return (d.hour - 1) * gridSize; } ...
確定! 回上一頁