xxxxxxxxxx
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<style>
.line {
fill: none;
stroke: black;
stroke-width: 1.5px;
}
</style>
</head>
<body>
<script>
var svg = d3.select("body").append("svg")
.attr("width", 960)
.attr("height", 500);
var width = 800;
var height = 400;
// See formats https://bl.ocks.org/zanarmstrong/raw/05c1e95bf7aa16c4768e/
// Data sample {"name": "G", "value": 10, "date": "2016-07"}
var parseDate = d3.timeParse("%Y-%m");
var displayDate = d3.timeFormat("%b %y");
var displayValue = d3.format(",.0f");
// Ordinal scale
var x = d3.scaleTime()
.range([0, width]);
// Linear scale
var y = d3.scaleLinear()
.range([height, height - 200]);
var line = d3.line()
.x(function(d) { return x(d.date); })
.y(function(d) { return y(d.value); });
var g = svg.append("g")
.attr("transform", "translate(50, 0)")
d3.json("dataset.json", function(error, data) {
if (error) throw error;
// Pre-processing
data.forEach(function(d) {
d.value = +d.value;
d["date"] = parseDate(d["date"]);
});
x.domain(d3.extent(data, function(d) { return d.date; }));
y.domain([0, d3.max(data, function(d) { return d.value; })]);
svg.selectAll(".label").data(data).enter()
.append("text")
.attr("class", "label")
.text(function(d, i) { return displayDate(d.date); })
.attr("y", 420)
.attr("x", function(d) { return x(d.date); })
.style("font-size", 10)
.style("font-family", "monospace");
// Display last value
g.selectAll(".value").data([data[data.length -1]]).enter()
.append("text")
.text(function(d, i) { return displayValue(d.value); })
.attr("class", "value")
.attr("y", function(d) { return y(d.value); })
.attr("x", width + 10)
.style("font-size", 20)
.style("font-family", "monospace");
g.selectAll(".line").data([data]).enter().append("path")
.attr("class", "line")
.attr("d", line);
// ******** Code ajoute ********
// Ajout des valeurs qui seront en indice des cercles
// Par defaut les valeurs ne seront pas affichees (opacity = 0)
g.selectAll(".valeur").data(data).enter().append("text")
.text(function(d, i) { return displayValue(d.value); })
.attr("class", "valeur")
.attr("x", function(d){return x(d.date) - 10})
.attr("y", function(d){return y(d.value) - 20})
.attr("fill", "black")
.attr("opacity", "0.0")
.style("font-size", 20)
.style("font-family", "monospace");
// Ajout des lignes partant de chaque cercle
// Par defaut les valeurs ne seront pas affichees (opacity = 0)
g.selectAll("line").data(data).enter().append("line")
.attr("class", "ligne")
.style("stroke", "black")
.attr("opacity", "0.0")
// dashes
.style("stroke-dasharray", ("3, 3"))
// x position of the first end of the line
.attr("x1", function(d) {return x(d.date);})
// y position of the first end of the line
.attr("y1", function(d) {return y(d.value);})
// x position of the second end of the line
.attr("x2",function(d) {return x(d.date);} )
.attr("y2",400 )
// Ajout des cercles pour chaque data
g.selectAll("circle").data(data).enter().append("circle")
.attr("cx", function(d){return x(d.date)})
.attr("cy", function(d){return y(d.value)})
//Attributs par défaut du cercle
.attr("r", 10)
.attr("fill", "lightgrey")
.attr("opacity", "0.5")
// Quand on survole le cercle
.on("mouseover", function(d, i){
// On le colorie en rouge
d3.select(this).style("fill", "red");
d3.select(this).transition().duration(300).style("opacity", 0.75);
// On rend visible la valeur (opacity = 1)
d3.selectAll(".valeur").filter(function(e, j) { return i === j; })
.attr("opacity", "1.0")
// On rend visible les lignes (opacity = 1)
d3.selectAll(".ligne").filter(function(e) { return d === e; })
.attr("opacity", "1.0");
})
// Quand on pert le focus
.on("mouseout", function(d, i){
// Le cercle reprend sa couleur par defaut
d3.select(this).style("fill", "lightgrey");
d3.select(this).transition().duration(300).style("opacity", 0.5);
// La valeur redevient invisible (opacity = 0)
d3.selectAll(".valeur").filter(function(e, j) { return i === j; })
.attr("opacity", "0.0");
// On rend invisible les lignes (opacity = 0)
d3.selectAll(".ligne").filter(function(e) { return d === e; })
.attr("opacity", "0.0");
})
});
</script>
</body>
https://d3js.org/d3.v4.min.js