From f62151f4831dd29a52c5f5c3ce700fdf91a27f27 Mon Sep 17 00:00:00 2001 From: Richard Hitier Date: Mon, 15 Mar 2021 16:43:39 +0100 Subject: [PATCH] Add y axis title --- app/main/templates/agent.html | 9 +++++++++ 1 file changed, 9 insertions(+), 0 deletions(-) diff --git a/app/main/templates/agent.html b/app/main/templates/agent.html index 2138897..d66c011 100644 --- a/app/main/templates/agent.html +++ b/app/main/templates/agent.html @@ -88,6 +88,15 @@ .attr("dy", ".15em") .attr("transform", "rotate(-65)"); + + svg.append("text") + .attr("text-anchor", "end") + .attr("transform", "rotate(-90)") + .attr("y", -margin.left+60) + .attr("x", -margin.top-70) + .text("Charge (ETP)") + + // Ajout de l'axe Y au SVG avec 6 éléments de légende en utilisant la fonction ticks (sinon D3JS en place autant qu'il peut). svg.append("g") .call(d3.axisLeft(y).ticks(6)); -- libgit2 0.21.2