| 12345678910111213141516171819202122232425 |
- /* *
- *
- * 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. !!!!!!!
- *
- * */
- // These are the series we allow boosting for.
- var boostables = [
- 'area',
- 'arearange',
- 'column',
- 'columnrange',
- 'bar',
- 'line',
- 'scatter',
- 'heatmap',
- 'bubble',
- 'treemap'
- ];
- export default boostables;
|