Enable clipping for xAxis

This commit is contained in:
Jan Philipp Timme 2017-12-31 01:55:20 +01:00
parent cfd2f88c16
commit 44e8ccacfb
1 changed files with 2 additions and 1 deletions

View File

@ -134,7 +134,7 @@ function createLineGraph(containerId, raceData){
focus.append("path")
.data([driverLapData.laps])
.attr("class", "line pathLines")
.attr("clip-path","url(#clip)")
.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)
@ -287,6 +287,7 @@ function createLineGraph(containerId, raceData){
focus.append("g")
.attr("class", "axis axis--x")
.attr("transform", "translate(0," + graphPosWidth.height + ")")
.attr("clip-path","url(#clip)")
.call(xAxis);
// Add the Y Axis on both sides