aboutsummaryrefslogtreecommitdiffstats
path: root/docs/results/js/trend.js
diff options
context:
space:
mode:
authorguillaume.lambert <guillaume.lambert@orange.com>2022-07-07 19:57:48 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2023-03-20 11:05:18 +0100
commitd00120571b209d5e5ec328ea97369245eb171e09 (patch)
treecf50242bdd98c1b9383c3d6e5e8eb46aa29a51e5 /docs/results/js/trend.js
parent3491ca761f5012fffe1494b7bcfffc80017717cf (diff)
Clean tabs and trailing blanks
Signed-off-by: guillaume.lambert <guillaume.lambert@orange.com> Change-Id: I82c3a2c26f02d9314fce8fa3f5b49c4a65ec8f75 (cherry picked from commit 7677c43363c22c7bfca60855058af503860c63b8)
Diffstat (limited to 'docs/results/js/trend.js')
-rw-r--r--docs/results/js/trend.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/results/js/trend.js b/docs/results/js/trend.js
index f24213382..47ee4d906 100644
--- a/docs/results/js/trend.js
+++ b/docs/results/js/trend.js
@@ -63,13 +63,13 @@ var trend = function(container, trend_data) {
.attr("d", valueline(trend_data))
.attr("stroke", "steelblue")
.attr("fill", "none");
-
+
trend_svg.selectAll(".dot")
.data(trend_data)
.enter().append("circle")
.attr("r", 2.5)
.attr("cx", function(d) { return trend_x(d.date); })
- .attr("cy", function(d) { return trend_y(d.score); });
+ .attr("cy", function(d) { return trend_y(d.score); });
return trend;
}