i4way-dash/.svn/pristine/7b/7bcb5fe7ee9a25f3bad71037dfc...

13 lines
248 B
Plaintext

"use strict";
module.exports = function(Chart) {
Chart.Radar = function(context, config) {
config.options = Chart.helpers.configMerge({ aspectRatio: 1 }, config.options);
config.type = 'radar';
return new Chart(context, config);
};
};