Blame view

src/main/webapp/libs/Highstock-7.2.0/code/es-modules/modules/boost/boostable-map.js 378 Bytes
caiyongsong committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/* *
 *
 *  Copyright (c) 2019-2019 Highsoft AS
 *
 *  Boost module: stripped-down renderer for higher performance
 *
 *  License: highcharts.com/license
 *
 * */

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;