Commit 169c3388315819b77f7eaa54f4ca00873995b201
1 parent
d8a6b942
Exists in
master
and in
4 other branches
Fix charge chart y height
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/main/templates/agent.html
... | ... | @@ -74,7 +74,7 @@ |
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)-1]); | |
77 | + y.domain([0, 100]); | |
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 | ... | ... |