149 lines
4.3 KiB
JavaScript
149 lines
4.3 KiB
JavaScript
/* ------------------------------------------------------------------------------
|
|
*
|
|
* # D3.js - pie chart entry animation
|
|
*
|
|
* Demo d3.js pie chart setup with .csv data source and loading animation
|
|
*
|
|
* Version: 1.0
|
|
* Latest update: August 1, 2015
|
|
*
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
$(function () {
|
|
|
|
// Initialize chart
|
|
pieEntryAnimation('#d3-pie-entry-animation', 120);
|
|
|
|
// Chart setup
|
|
function pieEntryAnimation(element, radius) {
|
|
|
|
|
|
// Basic setup
|
|
// ------------------------------
|
|
|
|
// Colors
|
|
var color = d3.scale.category20();
|
|
|
|
|
|
// Create chart
|
|
// ------------------------------
|
|
|
|
// Add SVG element
|
|
var container = d3.select(element).append("svg");
|
|
|
|
// Add SVG group
|
|
var svg = container
|
|
.attr("width", radius * 2)
|
|
.attr("height", radius * 2)
|
|
.append("g")
|
|
.attr("transform", "translate(" + radius + "," + radius + ")");
|
|
|
|
|
|
// Construct chart layout
|
|
// ------------------------------
|
|
|
|
// Arc
|
|
var arc = d3.svg.arc()
|
|
.outerRadius(radius)
|
|
.innerRadius(0);
|
|
|
|
// Pie
|
|
var pie = d3.layout.pie()
|
|
.sort(null)
|
|
.value(function(d) { return d.population; });
|
|
|
|
|
|
// Load data
|
|
// ------------------------------
|
|
|
|
d3.csv("assets/demo_data/d3/pies/pies_basic.csv", function(error, data) {
|
|
|
|
// Pull out values
|
|
data.forEach(function(d) {
|
|
d.population = +d.population;
|
|
});
|
|
|
|
|
|
//
|
|
// Append chart elements
|
|
//
|
|
|
|
// Bind data
|
|
var g = svg.selectAll(".d3-arc")
|
|
.data(pie(data))
|
|
.enter()
|
|
.append("g")
|
|
.attr("class", "d3-arc");
|
|
|
|
// Add arc path
|
|
g.append("path")
|
|
.attr("d", arc)
|
|
.style("stroke", "#fff")
|
|
.style("fill", function(d) { return color(d.data.age); })
|
|
.transition()
|
|
.ease("bounce")
|
|
.duration(2000)
|
|
.attrTween("d", tweenPie);
|
|
|
|
// Add text labels
|
|
g.append("text")
|
|
.attr("transform", function(d) { return "translate(" + arc.centroid(d) + ")"; })
|
|
.attr("dy", ".35em")
|
|
.style("opacity", 0)
|
|
.style("fill", "#fff")
|
|
.style("font-size", 12)
|
|
.style("text-anchor", "middle")
|
|
.text(function(d) { return d.data.age; })
|
|
.transition()
|
|
.ease("linear")
|
|
.delay(2000)
|
|
.duration(500)
|
|
.style("opacity", 1)
|
|
|
|
|
|
// Tween
|
|
function tweenPie(b) {
|
|
b.innerRadius = 0;
|
|
var i = d3.interpolate({startAngle: 0, endAngle: 0}, b);
|
|
return function(t) { return arc(i(t));
|
|
};
|
|
}
|
|
|
|
|
|
// Animate pie
|
|
// ------------------------------
|
|
|
|
$('.pie-animation').on('click', function (b) {
|
|
|
|
// Remove old paths
|
|
svg.selectAll("path").remove();
|
|
|
|
// Arc path
|
|
g.append("path")
|
|
.attr("d", arc)
|
|
.style("stroke", "#fff")
|
|
.style("fill", function(d) { return color(d.data.age); })
|
|
.transition()
|
|
.ease("bounce")
|
|
.duration(2000)
|
|
.attrTween("d", tweenPie);
|
|
|
|
// Text labels
|
|
g.append("text")
|
|
.attr("transform", function(d) { return "translate(" + arc.centroid(d) + ")"; })
|
|
.attr("dy", ".35em")
|
|
.style("opacity", 0)
|
|
.style("fill", "#fff")
|
|
.style("font-size", 12)
|
|
.style("text-anchor", "middle")
|
|
.text(function(d) { return d.data.age; })
|
|
.transition()
|
|
.ease("linear")
|
|
.delay(2000)
|
|
.duration(500)
|
|
.style("opacity", 1)
|
|
});
|
|
});
|
|
}
|
|
});
|