Commit 733598587e20b26098b4d41b265ea01fbb28fcea

Authored by hitier
1 parent b15e4db5

Fix non empty charge if all 0

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
app/main/templates/agent.html
... ... @@ -49,7 +49,7 @@
49 49  
50 50 const x = d3.scaleBand()
51 51 .range([0, width])
52   - .padding(0.1);
  52 + .padding(0.2);
53 53  
54 54 const y = d3.scaleLinear()
55 55 .range([height, 0]);
... ... @@ -74,14 +74,14 @@
74 74 // Pour l'axe X, c'est la liste des pays
75 75 // Pour l'axe Y, c'est le max des charge
76 76 x.domain(data.map(d => d.periode));
77   - y.domain([0, d3.max(data, d => d.charge)]);
  77 + y.domain([0, d3.max(data, d => d.charge)-1]);
78 78  
79 79 // Ajout de l'axe X au SVG
80 80 // Déplacement de l'axe horizontal et du futur texte (via la fonction translate) au bas du SVG
81 81 // Selection des noeuds text, positionnement puis rotation
82 82 svg.append("g")
83 83 .attr("transform", "translate(0," + height + ")")
84   - .call(d3.axisBottom(x).tickSize(10))
  84 + .call(d3.axisBottom(x).tickSize(5))
85 85 .selectAll("text")
86 86 .style("text-anchor", "end")
87 87 .attr("dx", "-.8em")
... ...