UNPKG

chart.js

Version:

Simple HTML5 charts using the canvas element.

11 lines (7 loc) 166 B
'use strict'; module.exports = function(Chart) { Chart.Bubble = function(context, config) { config.type = 'bubble'; return new Chart(context, config); }; };