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
committerGuillaume Lambert <guillaume.lambert@orange.com>2023-03-17 09:00:27 +0000
commit7677c43363c22c7bfca60855058af503860c63b8 (patch)
tree45f7348523ec4a1202fd8674fbbae22842bd7702 /docs/results/js/trend.js
parentf68869a7934fd054fa0f241c8045d86d879db1ef (diff)
Clean tabs and trailing blanks
Signed-off-by: guillaume.lambert <guillaume.lambert@orange.com> Change-Id: I82c3a2c26f02d9314fce8fa3f5b49c4a65ec8f75
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;
}