Chart.Bubble.js 165 B

12345678910
  1. "use strict";
  2. module.exports = function(Chart) {
  3. Chart.Bubble = function(context, config) {
  4. config.type = 'bubble';
  5. return new Chart(context, config);
  6. };
  7. };