Avoid cutoff above and below graph area

This commit is contained in:
Jan Philipp Timme 2017-12-31 14:35:19 +01:00
parent 0c6e65a053
commit 5e77b4c4ae
1 changed files with 3 additions and 1 deletions

View File

@ -92,7 +92,9 @@ function createLineGraph(containerId, raceData){
.attr("id", "clip") .attr("id", "clip")
.append("rect") .append("rect")
.attr("width", graphPosWidth.width) .attr("width", graphPosWidth.width)
.attr("height", graphPosWidth.height); .attr("height", graphPosWidth.height + 16) // Add 16 pixels of height ...
.attr("transform", "translate(0,-8)"); // ... so we can have 8 pixels above and below the graph
// This way, the lines and dots are not cut off
var focus = svg.append("g") var focus = svg.append("g")
.attr("class", "focus") .attr("class", "focus")