UNPKG

chart.js

Version:

Simple HTML5 charts using the canvas element.

12 lines (7 loc) 171 B
'use strict'; module.exports = function(Chart) { Chart.Doughnut = function(context, config) { config.type = 'doughnut'; return new Chart(context, config); }; };