highcharts
Version:
JavaScript charting framework
28 lines (27 loc) • 694 B
JavaScript
// SPDX-License-Identifier: LicenseRef-Highcharts
/**
* @license Highcharts JS v12.6.0 (2026-04-13)
* @module highcharts/modules/boost-canvas
* @requires highcharts
*
* Boost module
*
* (c) 2010-2026 Highsoft AS
* Author: Torstein Hønsi
*
* A commercial license may be required depending on use.
* See www.highcharts.com/license
*/
;
import Highcharts from '../../Core/Globals.js';
import BoostCanvas from '../../Extensions/BoostCanvas.js';
const G = Highcharts;
/**
* Initialize the canvas boost.
*
* @function Highcharts.initCanvasBoost
*/
G.initCanvasBoost = function () {
BoostCanvas.compose(G.Chart, G.Series, G.seriesTypes);
};
export default Highcharts;