Chart.js/src/charts/Chart.Doughnut.js

15 lines
236 B
JavaScript
Raw Normal View History

(function() {
"use strict";
var root = this;
var Chart = root.Chart;
var helpers = Chart.helpers;
Chart.Doughnut = function(context, config) {
config.type = 'doughnut';
return new Chart(context, config);
}
}).call(this);