Last active
January 27, 2016 05:08
-
-
Save mathisonian/4f673f4e62b7b98fcfd1 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 aspectRatio= '16:9'; | |
var viewBox = '0 0 ' + aspectRatio.split(':').join(' '); | |
var svg = d3.select('#example-4') | |
.append('svg') | |
.attr('width', '100%') | |
.attr('viewBox', viewBox); | |
// draw the background | |
// orange | |
svg.append('rect') | |
.style('fill', 'orange') | |
.attr('width', '100%') | |
.attr('height', '100%'); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment