Skip to content

Commit

Permalink
Achsenbeschriftung overflow visible
Browse files Browse the repository at this point in the history
  • Loading branch information
Danielle-Schuman committed Jan 31, 2021
1 parent e1023d8 commit 67a0d77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions bubblechart.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ var margin = {top: 0.0077 * window.innerHeight, right: 0.0078 * window.innerWidt
.append("svg")
.attr("width", 0.66*screenWidth)
.attr("height", 0.6*screenHeight)
.attr("style", "overflow: visible")
.append("g")
.attr("transform",
"translate(" + margin.left + "," + margin.top + ")");
Expand Down
1 change: 1 addition & 0 deletions zoomChart.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ function drawZoomBubbleChart(importedData){
.append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.attr("style", "overflow: visible")
.append("g")
.attr("transform",
"translate(" + margin.left + "," + margin.top + ")");
Expand Down

0 comments on commit 67a0d77

Please sign in to comment.