Skip to content

Instantly share code, notes, and snippets.

View jac1013's full-sized avatar
🍀

Joseph Arrieta jac1013

🍀
View GitHub Profile
/*
Input 1:
[1,2,3,4]
[6,7,8,9]
[3,4,5,6]
[8,9,3,4]
Output 1:
[6,1,2,3]
[3,4,7,4]
@jac1013
jac1013 / donut_chart.js
Last active November 13, 2020 23:23
A d3.js single value donut chart. JSFiddle: http://jsfiddle.net/8moez4j3/
var donutChart;
(function() {
var width = 500,
height = 300,
radius = 100,
innerRadius = 80,
transitionsDuration = 1000,
transitionsDelay = 250,
percentageTextSize = '2.0rem',
transitionType = 'elastic';