File "Chart.Bar.js"

Full Path: /home/cananyalcin/public_html/vendors/Chart.js/src/charts/Chart.Bar.js
File size: 160 bytes
MIME-type: text/plain
Charset: utf-8

"use strict";

module.exports = function(Chart) {

	Chart.Bar = function(context, config) {
		config.type = 'bar';

		return new Chart(context, config);
	};

};