highcharts
Version:
JavaScript charting framework
35 lines (34 loc) • 552 B
JavaScript
/* *
*
* (c) 2019-2025 Highsoft AS
*
* Boost module: stripped-down renderer for higher performance
*
* License: highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* */
;
/* *
*
* Imports
*
* */
import Boostables from './Boostables.js';
/* *
*
* Constants
*
* */
// These are the series we allow boosting for.
const BoostableMap = {};
Boostables.forEach((item) => {
BoostableMap[item] = true;
});
/* *
*
* Default Export
*
* */
export default BoostableMap;