|
<!DOCTYPE html> |
|
<meta charset="utf-8"> |
|
<style> |
|
|
|
body { |
|
font: 10px sans-serif; |
|
} |
|
|
|
.axis--x path { |
|
display: none; |
|
} |
|
|
|
.line { |
|
fill: none; |
|
stroke: steelblue; |
|
stroke-width: 1.5px; |
|
} |
|
|
|
</style> |
|
<body> |
|
<svg width="960" height="500"></svg> |
|
<script src="//d3js.org/d3.v4.min.js"></script> |
|
<script> |
|
|
|
var svg = d3.select("svg"), |
|
margin = {top: 20, right: 80, bottom: 30, left: 50}, |
|
width = svg.attr("width") - margin.left - margin.right, |
|
height = svg.attr("height") - margin.top - margin.bottom, |
|
g = svg.append("g").attr("transform", "translate(" + margin.left + "," + margin.top + ")"); |
|
|
|
var parseTime = d3.timeParse("%Y%m%d"); |
|
|
|
var x = d3.scaleTime().range([0, width]), |
|
y = d3.scaleLinear().range([height, 0]), |
|
z = d3.scaleOrdinal(d3.schemeCategory10); |
|
|
|
var line = d3.line() |
|
.curve(d3.curveBasis) |
|
.x(function(d) { return x(d.date); }) |
|
.y(function(d) { return y(d.temperature); }); |
|
|
|
var zoom = d3.zoom() |
|
.scaleExtent([1 / 4, 8]) |
|
.translateExtent([[-width, -Infinity], [2 * width, Infinity]]) |
|
.on("zoom", zoomed); |
|
|
|
var zoomedRect = svg.append("rect") |
|
.attr("width", width) |
|
.attr("height", height) |
|
.attr("fill", "none") |
|
.attr("pointer-events", "all") |
|
.call(zoom) |
|
|
|
d3.tsv("data.tsv", type, function(error, data) { |
|
if (error) throw error; |
|
|
|
var cities = data.columns.slice(1).map(function(id) { |
|
return { |
|
id: id, |
|
values: data.map(function(d) { |
|
return {date: d.date, temperature: d[id]}; |
|
}) |
|
}; |
|
}); |
|
|
|
x.domain(d3.extent(data, function(d) { return d.date; })); |
|
|
|
y.domain([ |
|
d3.min(cities, function(c) { return d3.min(c.values, function(d) { return d.temperature; }); }), |
|
d3.max(cities, function(c) { return d3.max(c.values, function(d) { return d.temperature; }); }) |
|
]); |
|
|
|
z.domain(cities.map(function(c) { return c.id; })); |
|
|
|
g.append("g") |
|
.attr("class", "axis axis--x") |
|
.attr("transform", "translate(0," + height + ")") |
|
.call(d3.axisBottom(x)) |
|
.append("text") |
|
.attr("transform", "rotate(0)") |
|
.attr("x", width/2) |
|
.attr("dy", "2.9em") |
|
.attr("fill", "#000") |
|
.text("Years and Months"); |
|
|
|
g.append("g") |
|
.attr("class", "axis axis--y") |
|
.call(d3.axisLeft(y)) |
|
.append("text") |
|
.attr("transform", "rotate(-90)") |
|
.attr("y", 6) |
|
.attr("dy", "0.71em") |
|
.attr("fill", "#000") |
|
.text("Temperature, ºF"); |
|
|
|
var city = g.selectAll(".city") |
|
.data(cities) |
|
.enter().append("g") |
|
.attr("class", "city") |
|
.attr("id", function(d){return getUniqueCode(d.id)}) |
|
|
|
drawLinePath(city); |
|
|
|
city.append("text") |
|
.datum(function(d) { return {id: d.id, value: d.values[d.values.length - 1]}; }) |
|
.attr("transform", function(d) { return "translate(" + x(d.value.date) + "," + y(d.value.temperature) + ")"; }) |
|
.attr("x", 3) |
|
.attr("dy", "0.35em") |
|
.style("font", "10px sans-serif") |
|
.text(function(d) { return d.id; }) |
|
.on("click", function(d){ |
|
var clickedValue = d3.select(this).classed("onClick"); |
|
if(!clickedValue){ |
|
g.select("#"+this.parentNode.id).select("path").remove(); |
|
} |
|
else { |
|
drawLinePath(g.select("#"+ this.parentNode.id)); |
|
} |
|
d3.select(this).classed("onClick", !clickedValue); |
|
}) |
|
.on("mouseover", function(d){ |
|
var clickedValue = d3.select(this).classed("onClick") |
|
if(!clickedValue){ |
|
g.select("#"+ this.parentNode.id).raise() |
|
g.selectAll(".city").filter(function(s){ |
|
return d.id != s.id |
|
}) |
|
.select("path") |
|
.style("stroke", "lightgray") |
|
} |
|
}) |
|
.on("mouseout", function(d){ |
|
g.selectAll(".city") |
|
.select("path") |
|
.style("stroke", function(line){ |
|
return z(line.id) |
|
}) |
|
}) |
|
var newXaxis = d3.extent(data, function(d){ |
|
return d.date; |
|
}); |
|
zoom.translateExtent([[x(newXaxis[0]), -Infinity], [x(newXaxis[1]), Infinity]]); |
|
zoomedRect.call(zoom.transform, d3.zoomIdentity); |
|
}); |
|
|
|
function drawLinePath(city) { |
|
liner = city.append("path") |
|
.attr("class", "line") |
|
.attr("clip-path", "url(#clip)") |
|
.attr("d", function(d) {return line(d.values); }) |
|
.style("fill", "none") |
|
.style("stroke", function(d) { return z(d.id); }); |
|
} |
|
|
|
function type(d, _, columns) { |
|
d.date = parseTime(d.date); |
|
for (var i = 1, n = columns.length, c; i < n; ++i) d[c = columns[i]] = +d[c]; |
|
return d; |
|
} |
|
|
|
function zoomed() { |
|
var xz = d3.event.transform.rescaleX(x); |
|
g.select(".axis--x") |
|
.call(d3.axisBottom(x).scale(xz)); |
|
//line |
|
line.x(function(d) { return xz(d.date); }); |
|
g.selectAll(".city") |
|
.select("path") |
|
.attr("d", function(d){return line(d.values);}); |
|
} |
|
|
|
function getUniqueCode(name){ |
|
return name.replace(/[^a-zA-Z]/g, "_"); |
|
} |
|
|
|
</script> |
|
</body> |