Skip to content

Instantly share code, notes, and snippets.

@dbetebenner
Last active January 15, 2017 09:47
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 dbetebenner/06a1e44890876660798ea8e31375e120 to your computer and use it in GitHub Desktop.
Save dbetebenner/06a1e44890876660798ea8e31375e120 to your computer and use it in GitHub Desktop.
D3 Block-a-Day: Day 12, January 12th, 2017
license:gpl-3.0
height:600
border:no
Raw

D3 Block-a-Day: Day 12, January, 12th 2017

New Year's Resolution for 2017: Make a D3 Block a day to teach myself D3. This is Number 12. This example steps away from maps. It's a pie/donut chart with a couple of mouseover effects. HUGE struggle to figure out how to get the count into the hole of the donut (Thanks @bclinkinbeard). Also playing with some CSS (a separate file for this example) to see what's possible.

<!DOCTYPE html>
<meta charset="utf-8">
<head>
<title>D3 Block-a-Day: Day 12, January 12, 2017</title>
<link rel="stylesheet" href="normalize.css">
</head>
<body>
<script src="//d3js.org/d3.v4.min.js"></script>
<div id="chart"></div>
<script>
var dataset = [
{ label: 'Abulia', count: 10 },
{ label: 'Betelgeuse', count: 20 },
{ label: 'Cantaloupe', count: 30 },
{ label: 'Dijkstra', count: 40 }
];
var width = 960;
var height = 600;
var radius = Math.min(width, height) / 3;
var color = d3.scaleOrdinal(d3.schemeCategory20b);
var svg = d3.select('#chart')
.append('svg')
.attr('width', width)
.attr('height', height)
.append('g')
.attr('transform', 'translate(' + (width / 2) +
',' + (height / 2) + ')');
var svgContainer = d3.select("#chart")
.append("svg")
.attr("width", width)
.attr("height", height);
var arc = d3.arc()
.innerRadius(100)
.outerRadius(radius);
var pie = d3.pie()
.value(function(d) { return d.count; })
.sort(null);
var tooltip = d3.select('#chart')
.append('div')
.attr('class', 'hidden tooltip');
var centerLabel = svg
.append('text')
.attr('id', 'centerText')
.attr('class', 'label')
.attr('x', 0)
.attr('y', 30)
.attr('text-anchor', 'middle');
var donutChart = svg.selectAll('path')
.data(pie(dataset))
.enter()
.append('path')
.attr('d', arc)
.attr('fill', function(d) {
return color(d.data.label);
})
.on('mousemove', function(d) {
var mouse = d3.mouse(svg.node()).map(function(d) {
return parseInt(d)
});
d3.select('#centerText').text(d.data.count);
tooltip.classed('hidden', false)
.attr('style', 'left:' + (mouse[0] + width/2) +'px; top:' + (mouse[1] + height/2) + 'px')
.html(d.data.label)
})
.on('mouseout', function() {
tooltip.classed('hidden', true);
d3.select('#centerText').text(null);
});
</script>
</body>
body {
margin: 0;
font-family: Helvetica Neue;
}
.hidden {
display: none;
}
.label {
font: 90px Helvetica Neue;
fill: red;
text-shadow: -2px 0 black, 0 1px black, 2px 0 black, 0 -2px black;
}
div.tooltip {
background-color: #eeeeee;
padding: 7px;
color: red;
height: 40px;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
font: 27px Helvetica Neue;
border: 2.5px solid;
border-color: black;
border-radius: 5px;
opacity: 0.9;
position: absolute;
text-align: "center";
box-shadow: 5px 5px 2px 0 rgba(0,0,0,0.4);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment