mirror of
https://gitlab.com/JKANetwork/CheckServer.git
synced 2026-02-23 21:43:46 +01:00
11 lines
160 B
JavaScript
11 lines
160 B
JavaScript
"use strict";
|
|
|
|
module.exports = function(Chart) {
|
|
|
|
Chart.Bar = function(context, config) {
|
|
config.type = 'bar';
|
|
|
|
return new Chart(context, config);
|
|
};
|
|
|
|
}; |