From f77c22a625727dfeb96c414675013526f53a051b Mon Sep 17 00:00:00 2001 From: Jan Philipp Timme Date: Sun, 31 Dec 2017 14:44:35 +0100 Subject: [PATCH] Increase size of pitstoppoints a bit --- js/diagrams.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/diagrams.js b/js/diagrams.js index 390b64f..c903666 100644 --- a/js/diagrams.js +++ b/js/diagrams.js @@ -170,7 +170,7 @@ function createLineGraph(containerId, raceData){ .attr("fill", getColorValue(driverIndex, enhancedLapData.length)) .attr("cx", function(d, i) {return x(d.lap) }) .attr("cy", function(d, i) { return y(d.position) }) - .attr("r", linePointSize * 1.2) + .attr("r", linePointSize * 1.4) .on("click", handleClickOnPoint) .on("mouseover", handleMouseOverLinePoint) .on("mouseout", handleMouseOutLinePoint);