19 lines
463 B
JavaScript
19 lines
463 B
JavaScript
/**
|
|
* @license Highstock JS v10.2.1 (2022-08-29)
|
|
* @module highcharts/modules/full-screen
|
|
* @requires highcharts
|
|
*
|
|
* Advanced Highcharts Stock tools
|
|
*
|
|
* (c) 2010-2021 Highsoft AS
|
|
* Author: Torstein Honsi
|
|
*
|
|
* License: www.highcharts.com/license
|
|
*/
|
|
'use strict';
|
|
import Highcharts from '../../Core/Globals.js';
|
|
import Fullscreen from '../../Extensions/Exporting/Fullscreen.js';
|
|
var G = Highcharts;
|
|
G.Fullscreen = Fullscreen;
|
|
Fullscreen.compose(G.Chart);
|