Skip to content

Instantly share code, notes, and snippets.

@NPashaP
Created January 20, 2018 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NPashaP/86526392ae4f78326a006b2191845238 to your computer and use it in GitHub Desktop.
Save NPashaP/86526392ae4f78326a006b2191845238 to your computer and use it in GitHub Desktop.
Viz - pie3d - custom
license: gpl-3.0
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.viz-pie3d .label{
fill:white;
text-anchor:middle;
font-size:12px;
}
</style>
<body>
<svg width="960" height="500">
<g transform="translate(480, 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 pie3d = viz.pie3d()
.data(getData())
.fill(function(d){ return d[2];})
.value(function(d){ return d[1];})
.innerRadius(130)
.outerRadius(200)
.height(60)
d3.select("g").call(pie3d);
function getData(){
return [
['IE',6.24,'#F44336']
,['Chrome',14.2,'#9C27B0']
,['Firefox',22.71,'#3F51B5']
,['Safari',4.56,'#2196F3']
,['Opera',2.93,'#795548']
,['Vivaldi',0.36,'#009688']
];
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment