chart = {
let mySVG = d3.select(svg);
let midline = mySVG.attr("height")/2;
let startX = 5;
let spacing = 3;
let sparklines = mySVG.selectAll("line")
.data(scores)
.join("line")
.attr("x1", (d,i) => startX + i * spacing)
.attr("x2", (d,i) => startX + i * spacing)
.attr("y1", midline)
.attr("y2", d => midline - d.UVA_score + d.Opponent_score)
.attr("class", d => {
if (d.Location == "Charlottesville, Va.") {
return "home";
} else {
return "away";
}
});
let uvaDots = mySVG.selectAll(".uva")
.data(scores)
.join("circle")
.attr("cx", (d,i) => startX + i * spacing)
.attr("cy", d => midline - d.UVA_score)
.attr("r", 1)
.attr("class", "uva");
let opponentDots = mySVG.selectAll(".opponent")
.data(scores)
.join("circle")
.attr("cx", (d,i) => startX + i * spacing)
.attr("cy", d => midline + d.Opponent_score)
.attr("r", 1)
.attr("class","opponent");
scores.forEach((d,i) => {
let thisGameMonth = +d.Date.split('/')[0];
let lastGameMonth;
let lastIndex = i-1;
if (typeof(scores[lastIndex]) != "undefined" && scores[lastIndex].Date != "") {lastGameMonth = +scores[lastIndex].Date.split('/')[0]} else {lastGameMonth = ""}
if (i == 0 || lastGameMonth == "" || thisGameMonth-lastGameMonth > 1) {
mySVG.append("text")
.attr("x", startX + i * spacing)
.attr("y", midline + 14)
.text(d.Date.split('/')[2] + "-" + (Number(d.Date.split('/')[2])+1))
.classed("seasonText", true);
}
})
}