19 lines
453 B
JavaScript
19 lines
453 B
JavaScript
/* *
|
|
*
|
|
* Copyright (c) 2019-2020 Highsoft AS
|
|
*
|
|
* Boost module: stripped-down renderer for higher performance
|
|
*
|
|
* License: highcharts.com/license
|
|
*
|
|
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
|
|
*
|
|
* */
|
|
import boostables from './boostables.js';
|
|
// These are the series we allow boosting for.
|
|
var boostableMap = {};
|
|
boostables.forEach(function (item) {
|
|
boostableMap[item] = 1;
|
|
});
|
|
export default boostableMap;
|