Last active
December 27, 2017 18:08
-
-
Save fafnirical/c611314cbde7f6f7479e2604f2c39f4b to your computer and use it in GitHub Desktop.
N-ile chart
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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
width: 375px; | |
height: 165px; | |
} | |
</style> | |
<script src="https://d3js.org/d3.v4.min.js"></script> | |
<script> | |
const width = 375; | |
const height = 165; | |
const colors = [ | |
'red', | |
'orange', | |
'yellow', | |
'green', | |
'blue', | |
'indigo', | |
'violet', | |
]; | |
const svg = d3.select('body').append('svg') | |
.attr('width', width) | |
.attr('height', height); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment