You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.4 KiB
95 lines
2.4 KiB
3 years ago
|
/* ------------------------------------------------------------------------------
|
||
|
*
|
||
|
* # D3.js - basic donut chart
|
||
|
*
|
||
|
* Demo d3.js donut chart setup with .csv data source
|
||
|
*
|
||
|
* Version: 1.0
|
||
|
* Latest update: August 1, 2015
|
||
|
*
|
||
|
* ---------------------------------------------------------------------------- */
|
||
|
|
||
|
$(function () {
|
||
|
|
||
|
// Initialize chart
|
||
|
donutBasic('#d3-donut-basic', 120);
|
||
|
|
||
|
// Chart setup
|
||
|
function donutBasic(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(radius / 1.75);
|
||
|
|
||
|
// 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); });
|
||
|
|
||
|
// Add text labels
|
||
|
g.append("text")
|
||
|
.attr("transform", function(d) { return "translate(" + arc.centroid(d) + ")"; })
|
||
|
.attr("dy", ".35em")
|
||
|
.style("fill", "#fff")
|
||
|
.style("font-size", 12)
|
||
|
.style("text-anchor", "middle")
|
||
|
.text(function(d) { return d.data.age; });
|
||
|
});
|
||
|
}
|
||
|
});
|