Skip to content

Instantly share code, notes, and snippets.

@ix4
Forked from NPashaP/.block
Created October 25, 2018 06:24
Show Gist options
  • Save ix4/781d397f6c881b5ca41fa27f2c54a723 to your computer and use it in GitHub Desktop.
Save ix4/781d397f6c881b5ca41fa27f2c54a723 to your computer and use it in GitHub Desktop.
Viz - pie - fill
license: gpl-3.0
<!DOCTYPE html>
<meta charset="utf-8">
<style>
</style>
<body>
<svg width="960" height="500">
<g transform="translate(200, 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 pie = viz.pie()
.data(getData())
.fill(d=>d[2])
.value(d=>d[1])
d3.select("g").call(pie)
function getData(){
return [
['IE',6.24,'#F44336']
,['Chrome',14.2,'#9C27B0']
,['Firefox',22.71,'#3F51B5']
,['Safari',4.56,'#2196F3']
,['Opera',2.93,'#795548']
,['Vivaldi',1.36,'#009688']
]
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment