Boostables.js 482 B

12345678910111213141516171819202122232425
  1. /* *
  2. *
  3. * Copyright (c) 2019-2020 Highsoft AS
  4. *
  5. * Boost module: stripped-down renderer for higher performance
  6. *
  7. * License: highcharts.com/license
  8. *
  9. * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
  10. *
  11. * */
  12. // These are the series we allow boosting for.
  13. var boostables = [
  14. 'area',
  15. 'arearange',
  16. 'column',
  17. 'columnrange',
  18. 'bar',
  19. 'line',
  20. 'scatter',
  21. 'heatmap',
  22. 'bubble',
  23. 'treemap'
  24. ];
  25. export default boostables;