highcharts
Version:
JavaScript charting framework
38 lines (37 loc) • 573 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. !!!!!!!
*
* */
;
/* *
*
* Constants
*
* */
// These are the series we allow boosting for.
const Boostables = [
'area',
'areaspline',
'arearange',
'column',
'columnrange',
'bar',
'line',
'scatter',
'heatmap',
'bubble',
'treemap'
];
/* *
*
* Default Export
*
* */
export default Boostables;