Skip to content

Instantly share code, notes, and snippets.

@NPashaP
Created January 14, 2018 23:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save NPashaP/deeca64bfc5ba82f524de239fc103f93 to your computer and use it in GitHub Desktop.
Save NPashaP/deeca64bfc5ba82f524de239fc103f93 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