highcharts
Version:
JavaScript charting framework
28 lines (27 loc) • 693 B
JavaScript
// SPDX-License-Identifier: LicenseRef-Highcharts
/**
* @license Highcharts JS v12.5.0 (2026-01-12)
* @module highcharts/modules/boost-canvas
* @requires highcharts
*
* Boost module
*
* (c) 2010-2026 Highsoft AS
* Author: Torstein Honsi
*
* 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;