Increase size of pitstoppoints a bit

This commit is contained in:
Jan Philipp Timme 2017-12-31 14:44:35 +01:00
parent 0feed1236c
commit f77c22a625
1 changed files with 1 additions and 1 deletions

View File

@ -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);