package.es-modules.masters.modules.boost-canvas.src.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of highcharts Show documentation
Show all versions of highcharts Show documentation
JavaScript charting framework
The newest version!
/**
* @license Highcharts JS [email protected]@ (@product.date@)
* @module highcharts/modules/boost-canvas
* @requires highcharts
*
* Boost module
*
* (c) 2010-2024 Highsoft AS
* Author: Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
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;