Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: donut_multiple_nesting.js
/* ------------------------------------------------------------------------------ * * # D3.js - multiple nested donut charts * * Demo d3.js multiple donut charts setup with nesting * * ---------------------------------------------------------------------------- */ // Setup module // ------------------------------ var D3PieDonutMultipleNesting = function() { // // Setup module components // // Chart var _pieDonutMultipleNesting = function() { if (typeof d3 == 'undefined') { console.warn('Warning - d3.min.js is not loaded.'); return; } // Main variables var element = document.getElementById('d3-donut-nesting'), radius = 110, margin = 10; // Initialize chart only if element exsists in the DOM if(element) { // Basic setup // ------------------------------ // Colors var slice_colors = d3.scale.category20c(), slice_text_color = '#fff'; // Load data // ------------------------------ d3.csv("../../../../global_assets/demo_data/d3/pies/pies_nesting.csv", function(flights) { // Nest the flight data by originating airport var airports = d3.nest() .key(function(d) { return d.origin; }) .entries(flights); // Create chart // ------------------------------ // Insert an svg element (with margin) for each row in our dataset var svg = d3.select(element) .selectAll("svg") .data(airports) .enter() .append("svg") .attr("width", (radius + margin) * 2) .attr("height", (radius + margin) * 2) .append("g") .attr("transform", "translate(" + (radius + margin) + "," + (radius + margin) + ")"); // Construct chart layout // ------------------------------ // Arc var arc = d3.svg.arc() .innerRadius(radius / 2) .outerRadius(radius); // Pie var pie = d3.layout.pie() .value(function(d) { return +d.count; }) .sort(function(a, b) { return b.count - a.count; }); // // Append chart elements // // Add a label for the airport svg.append("text") .attr("class", "d3-text") .attr("dy", ".35em") .style("text-anchor", "middle") .style("font-weight", 500) .text(function(d) { return d.key; }); // Pass the nested values to the pie layout var g = svg.selectAll("g") .data(function(d) { return pie(d.values); }) .enter() .append("g") .attr("class", "d3-arc"); // Add a colored arc path, with a mouseover title showing the count g.append("path") .attr("d", arc) .attr("class", "d3-slice-border") .style("fill", function(d) { return slice_colors(d.data.carrier); }) .append("title") .text(function(d) { return d.data.carrier + ": " + d.data.count; }); // Add a label to the larger arcs, translated to the arc centroid and rotated. g.filter(function(d) { return d.endAngle - d.startAngle > .2; }).append("text") .attr("dy", ".35em") .attr("transform", function(d) { return "translate(" + arc.centroid(d) + ")rotate(" + angle(d) + ")"; }) .style("fill", slice_text_color) .style("font-size", 12) .style("text-anchor", "middle") .text(function(d) { return d.data.carrier; }); // Computes the label angle of an arc, converting from radians to degrees. function angle(d) { var a = (d.startAngle + d.endAngle) * 90 / Math.PI - 90; return a > 90 ? a - 180 : a; } }); } }; // // Return objects assigned to module // return { init: function() { _pieDonutMultipleNesting(); } } }(); // Initialize module // ------------------------------ document.addEventListener('DOMContentLoaded', function() { D3PieDonutMultipleNesting.init(); });