22 lines
470 B
JavaScript
22 lines
470 B
JavaScript
![]() |
/**
|
||
|
* @license Highcharts JS v7.0.0 (2018-12-11)
|
||
|
*
|
||
|
* (c) 2009-2018 Torstein Honsi
|
||
|
*
|
||
|
* License: www.highcharts.com/license
|
||
|
*/
|
||
|
'use strict';
|
||
|
(function (factory) {
|
||
|
if (typeof module === 'object' && module.exports) {
|
||
|
module.exports = factory;
|
||
|
} else if (typeof define === 'function' && define.amd) {
|
||
|
define(function () {
|
||
|
return factory;
|
||
|
});
|
||
|
} else {
|
||
|
factory(typeof Highcharts !== 'undefined' ? Highcharts : undefined);
|
||
|
}
|
||
|
}(function (Highcharts) {
|
||
|
|
||
|
}));
|