Created
February 26, 2021 18:33
-
-
Save lvngd/7e4c9acdda060e32e5b6d7621f77179a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var svg = d3.select("#chart1") | |
| .append('div') | |
| .classed('svg-container', true) | |
| .append('svg') | |
| .attr("preserveAspectRatio", "xMinYMin meet") | |
| .attr("viewBox", `0 0 ${width} ${height}`) | |
| .classed('svg-content-responsive', true) | |
| .style("background-color", svgBackgroundColor) | |
| .append("g") | |
| .attr('transform', `translate(${margin.left}, ${margin.top})`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment