D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
jfourmond
Full window
Github gist
Graphe & Date
Built with
blockbuilder.org
<!DOCTYPE html> <head> <meta charset="utf-8"> <script src="https://d3js.org/d3.v4.min.js"></script> <style> body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; } </style> </head> <body> <script> const width = 960; const height = 500; // Feel free to change or delete any of the code you see in this editor! const svg = d3.select("body").append("svg") .attr("width", 960) .attr("height", 500) const parseDate = d3.timeFormat("%y-%m-%d"); const displayDate = d3.timeFormat("%d %m %Y"); const displayValue = d3.format(",.0f"); let data = []; let years; d3.queue() .defer(d3.json, "data.json") .await(process) // Ordinal scale var x = d3.scaleOrdinal().range([0, width]); var y = d3.scaleLinear().range([height, height - 200]); var line = d3.line() .x(function(d) { return x(d.year); }) .y(function(d) { return y(d.value); }); function process(error, json) { years = Object.keys(json); for(year of years) { console.log(parseDate(year)); data.push({year:parseDate(year), value:json[year]}); } console.log("JSON : %O", json); console.log("YEARS : %O", years); console.log("DATA : %O", data); draw(); } function draw() { x.domain(data.map(function(d) { return d.year; })); y.domain([0, d3.max(data, function(d) { return d.value; })]); // Création et affichage de la légende de l'axe des abcisses svg.selectAll("text").data(data).enter() .append("text") .text(function(d, i) { console.log(displayDate(d.year)); return displayDate(d.year); }) .attr("y", 420) .attr("x", function(d) { return x(d.year); }) .attr("id", function(d, i) { return "id_"+i; }) .style("font-size", 10) .style("font-family", "monospace"); // Création et affichage de la dernière valeur du graphe 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 - 20) .style("font-size", 20) .style("font-family", "monospace"); // Création et affichage du graphe g.selectAll("path").data([data]).enter().append("path") .attr("class", "line") .attr("d", line); // Création et non-affichage des pointillés de chaque sommet g.selectAll("dash_array").data(data).enter() .append("line") .style("stroke", "black") // colour the line .attr("x1", function(d) { return x(d.name); }) .attr("y1", function(d) { return y(d.value); }) .attr("x2", function(d) { return x(d.name); }) .attr("y2", function(d) { return y(0); }) .attr("id", function(d, i) { return "id_"+i; }) .attr("class", "dash_array") .style("stroke-dasharray", ("3, 3")) .style("display", "none"); // Création et affichage des cercles g.selectAll("circle").data(data).enter().append("circle") .attr("cx", function(d) { return x(d.name); }) .attr("cy", function(d) { return y(d.value); }) .attr("r", 10) .attr("id", function(d, i) { return "id_" + i;}) .attr("fill", "black") .attr("opacity", 0.2) // Action lors du passage de la souris .on("mouseover", function(d, i) { // Changement de couleur du cercle d3.select(this).style("fill", "red").attr("opacity", 1.0); // Affichage du texte du cercle d3.selectAll(".circle_text").filter(function(id) { return d === id; }).style("display", "flex"); // Affichage des pointillés d3.selectAll(".dash_array").filter(function(id) { return d === id; }).style("display", "flex"); }) // Action lors de la sortie de la souris .on("mouseout", function(d) { // Changement de couleur du cercle d3.select(this).style("fill", "black") .attr("opacity", 0.2); // Non-affichage du texte du cercle d3.selectAll(".circle_text").filter(function(id) { return d === id; }).style("display", "none"); // Non-affichage des pointillés d3.selectAll(".dash_array").filter(function(id) { return d === id; }).style("display", "none"); }); // Création et non-affichage du texte au niveau des sommets g.selectAll("circle_text").data(data).enter() .append("text") .text(function(d, i) { return d.value; }) .attr("y", function(d) { return y(d.value + 4); }) .attr("x", function(d) { return x(d.name)-10; }) .attr("id", function(d, i) { return "id_"+i; }) .attr("class", "circle_text") .style("font-size", 20) .style("font-family", "monospace") .style("display", "none"); } </script> </body>
https://d3js.org/d3.v4.min.js