Created
January 13, 2018 00:12
-
-
Save NPashaP/51289be619cd3376a579edc0acc66b5d to your computer and use it in GitHub Desktop.
Viz - chord - padAngle
This file contains 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
license: gpl-3.0 |
This file contains 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> | |
</style> | |
<body> | |
<svg width="960" height="500"> | |
<g transform="translate(450,250)"></g> | |
</svg> | |
<script src="https://d3js.org/d3.v4.min.js"></script> | |
<script src="http://vizjs.org/viz.v1.3.0.min.js"></script> | |
<script> | |
var chord = viz.chord() | |
.data(getData()) | |
.padAngle(.2) | |
d3.select("g").call(chord); | |
function getData(){ | |
return [ | |
["US","Canada",343000] | |
,["US","China",27000] | |
,["US","India",3000] | |
,["US","UK",212000] | |
,["Canada","China",9000] | |
,["Canada","India",2000] | |
,["Canada","UK",86000] | |
,["Canada","US",842000] | |
,["UK","Canada",607000] | |
,["UK","China",9000] | |
,["UK","India",5000] | |
,["UK","US",715000] | |
,["China","Canada",711000] | |
,["China","India",7000] | |
,["China","UK",183000] | |
,["China","US",2104000] | |
,["India","Canada",621000] | |
,["India","China",9000] | |
,["India","UK",777000] | |
,["India","US",1969000] | |
] | |
} | |
</script> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment