UNPKG

gentelella

Version:

Gentellela Admin is a free to use Bootstrap admin template

19 lines (12 loc) 312 B
"use strict"; module.exports = function(Chart) { var helpers = Chart.helpers; var defaultConfig = { aspectRatio: 1 }; Chart.Radar = function(context, config) { config.options = helpers.configMerge(defaultConfig, config.options); config.type = 'radar'; return new Chart(context, config); }; };