Make sure the lines don't overlap any other things.

This commit is contained in:
Maschell 2017-12-31 01:34:51 +01:00
parent 20de45ae4f
commit 6292afec03
2 changed files with 9 additions and 14 deletions

View File

@ -90,11 +90,6 @@ body {
padding-left: 1.25rem;
}
.area {
fill: steelblue;
clip-path: url(#clip);
}
.zoom {
cursor: move;
fill: none;

View File

@ -82,12 +82,6 @@ function createLineGraph(containerId, raceData){
.attr("height", svgHeight);
//----------------------------------------------------------------------
/*svg.append("rect")
.attr("class", "zoom")
.attr("width", graphPosWidth.width)
.attr("height", graphPosWidth.height)
.attr("transform", "translate(" + graphPosWidth.posX + "," + graphPosWidth.posY + ")")
.call(zoom);*/
svg.append("defs").append("clipPath")
.attr("id", "clip")
@ -95,6 +89,7 @@ function createLineGraph(containerId, raceData){
.attr("width", graphPosWidth.width)
.attr("height", graphPosWidth.height);
var focus = svg.append("g")
.attr("class", "focus")
.attr("transform", "translate(" + graphPosWidth.posX + "," + graphPosWidth.posY + ")");
@ -134,6 +129,7 @@ function createLineGraph(containerId, raceData){
focus.append("path")
.data([driverLapData.laps])
.attr("class", "line pathLines")
.attr("clip-path","url(#clip)")
.attr("data-line", driverLapData.driver.driverId) // custom data to specify the line
.attr("data-opacitychange", 1)
.attr("data-highlighted", 0)
@ -159,6 +155,7 @@ function createLineGraph(containerId, raceData){
.data([singleLap])
.enter().append("circle") // Uses the enter().append() method
.attr("class", "pitstopdot") // Assign a class for styling
.attr("clip-path","url(#clip)")
.attr("data-line", driverLapData.driver.driverId)
.attr("data-opacitychange", 1)
.attr("data-highlighted", 0)
@ -194,6 +191,7 @@ function createLineGraph(containerId, raceData){
.data(driverLapData.laps)
.enter().append("circle") // Uses the enter().append() method
.attr("class", "linedot") // Assign a class for styling
.attr("clip-path","url(#clip)")
.attr("id", function(d, i) { return "circle-linepoint-" + d.lap + "-" + d.driverId; })
.attr("data-line", driverLapData.driver.driverId)
.attr("data-opacitychange", 0)
@ -210,6 +208,7 @@ function createLineGraph(containerId, raceData){
.data(driverLapData.laps)
.enter().append("circle") // Uses the enter().append() method
.attr("class", "linedot") // Assign a class for styling
.attr("clip-path","url(#clip)")
.attr("circle-id", function(d, i) { return "circle-linepoint-" + d.lap + "-" + d.driverId; })
.attr("data-line", driverLapData.driver.driverId)
.attr("data-opacitychange", 0)
@ -236,6 +235,7 @@ function createLineGraph(containerId, raceData){
.data([driverLapData.laps[driverLapData.laps.length - 1]])
.enter().append("rect") // Uses the enter().append() method
.attr("class", "endpointdot") // Assign a class for styling
.attr("clip-path","url(#clip)")
.attr("data-line", driverLapData.driver.driverId)
.attr("data-opacitychange", 1)
.attr("data-highlighted", 0)