122 lines
3.4 KiB
JavaScript
122 lines
3.4 KiB
JavaScript
/* ------------------------------------------------------------------------------
|
|
*
|
|
* # D3.js - pie chart update animation
|
|
*
|
|
* Demo d3.js pie chart setup with .tsv data source and update animation
|
|
*
|
|
* Version: 1.0
|
|
* Latest update: August 1, 2015
|
|
*
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
$(function () {
|
|
|
|
// Create Uniform checkbox
|
|
$(".pie-radios input").uniform({
|
|
radioClass: 'choice'
|
|
});
|
|
|
|
|
|
// Initialize chart
|
|
pieUpdateAnimation('#d3-pie-update', 120);
|
|
|
|
// Chart setup
|
|
function pieUpdateAnimation(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()
|
|
.value(function(d) { return d.apples; })
|
|
.sort(null);
|
|
|
|
|
|
// Load data
|
|
// ------------------------------
|
|
|
|
d3.tsv("assets/demo_data/d3/pies/pies_update.tsv", function(error, data) {
|
|
|
|
// Pull out values
|
|
data.forEach(function(d) {
|
|
d.apples = +d.apples || 0;
|
|
d.oranges = +d.oranges || 0;
|
|
});
|
|
|
|
|
|
//
|
|
// Append chart elements
|
|
//
|
|
|
|
// Bind data
|
|
var path = svg.datum(data)
|
|
.selectAll("path")
|
|
.data(pie)
|
|
.enter()
|
|
.append("path")
|
|
.attr("d", arc)
|
|
.style("stroke", "#fff")
|
|
.style("fill", function(d, i) { return color(i); })
|
|
.each(function(d) { this._current = d; }); // store the initial angles
|
|
|
|
|
|
// Apply change event
|
|
d3.selectAll(".pie-radios input").on("change", change);
|
|
|
|
// Change values on page load
|
|
var timeout = setTimeout(function() {
|
|
d3.select("input[value=\"oranges\"]").property("checked", true).each(change);
|
|
$.uniform.update();
|
|
}, 2000);
|
|
|
|
// Change values
|
|
function change() {
|
|
var value = this.value;
|
|
clearTimeout(timeout);
|
|
pie.value(function(d) { return d[value]; }); // change the value function
|
|
path = path.data(pie); // compute the new angles
|
|
path.transition().duration(750).attrTween("d", arcTween); // redraw the arcs
|
|
}
|
|
});
|
|
|
|
|
|
// Store the displayed angles in _current.
|
|
// Then, interpolate from _current to the new angles.
|
|
// During the transition, _current is updated in-place by d3.interpolate.
|
|
function arcTween(a) {
|
|
var i = d3.interpolate(this._current, a);
|
|
this._current = i(0);
|
|
return function(t) {
|
|
return arc(i(t));
|
|
};
|
|
}
|
|
}
|
|
});
|