gentelella/production/js/chartjs/charts/Chart.Bubble.js
2016-02-27 15:12:04 +02:00

10 lines
165 B
JavaScript
Executable file

"use strict";
module.exports = function(Chart) {
Chart.Bubble = function(context, config) {
config.type = 'bubble';
return new Chart(context, config);
};
};