Skip to content

Instantly share code, notes, and snippets.

@fafnirical
Last active December 27, 2017 18:08
Show Gist options
  • Save fafnirical/c611314cbde7f6f7479e2604f2c39f4b to your computer and use it in GitHub Desktop.
Save fafnirical/c611314cbde7f6f7479e2604f2c39f4b to your computer and use it in GitHub Desktop.
N-ile chart
<!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