Skip to content

Instantly share code, notes, and snippets.

@NPashaP
Created January 13, 2018 00:10
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save NPashaP/9d69d2f18ea367eb8ac115933febd2de to your computer and use it in GitHub Desktop.
Viz - chord - label
license: gpl-3.0
<!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())
.label(function(d){ return d.source+" ("+d3.format(",")(d.value/1000)+")"})
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