highcharts
Version:
JavaScript charting framework
38 lines (37 loc) • 513 B
JavaScript
/* *
*
* (c) 2019-2026 Highsoft AS
*
* Boost module: stripped-down renderer for higher performance
*
* License: highcharts.com/license
*
*
* */
;
/* *
*
* Imports
*
* */
import Boostables from './Boostables.js';
/* *
*
* Constants
*
* */
/**
* These are the series we allow boosting for.
* @internal
*/
const BoostableMap = {};
Boostables.forEach((item) => {
BoostableMap[item] = true;
});
/* *
*
* Default Export
*
* */
/** @internal */
export default BoostableMap;