Merge pull request #646 from humean/patch-1

Fix overall svg canvas height/width attribute
This commit is contained in:
Honza Pokorny 2015-12-17 06:49:28 -04:00
commit 7558b50cde

View File

@ -16,8 +16,8 @@ snippet marginconvention
var ${8:height} = ${9:500} - $1.top - $1.bottom;
var ${10:svg} = d3.select("${11}").append("svg")
.attr("width", $6)
.attr("height", $8)
.attr("width", $6 + $1.left + $1.right)
.attr("height", $8 + $1.top + $1.bottom)
.append("g")
.attr("transform", "translate(" + $1.left + "," + $1.top + ")")
snippet nest