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