highcharts
Version:
JavaScript charting framework
41 lines (40 loc) • 534 B
JavaScript
/* *
*
* (c) 2019-2026 Highsoft AS
*
* Boost module: stripped-down renderer for higher performance
*
* License: highcharts.com/license
*
*
* */
;
/* *
*
* Constants
*
* */
/**
* These are the series we allow boosting for.
* @internal
*/
const Boostables = [
'area',
'areaspline',
'arearange',
'column',
'columnrange',
'bar',
'line',
'scatter',
'heatmap',
'bubble',
'treemap'
];
/* *
*
* Default Export
*
* */
/** @internal */
export default Boostables;