Pie3DComposition.js 558 B

1234567891011121314151617181920212223242526
  1. /* *
  2. *
  3. * (c) 2010-2021 Torstein Honsi
  4. *
  5. * 3D pie series
  6. *
  7. * License: www.highcharts.com/license
  8. *
  9. * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
  10. *
  11. * */
  12. /* *
  13. *
  14. * Imports
  15. *
  16. * */
  17. import Pie3DPoint from './Pie3DPoint.js';
  18. import Pie3DSeries from './Pie3DSeries.js';
  19. import SeriesRegistry from '../../Core/Series/SeriesRegistry.js';
  20. /* *
  21. *
  22. * Composition
  23. *
  24. * */
  25. SeriesRegistry.seriesTypes.pie.prototype.pointClass.prototype.haloPath = Pie3DPoint.prototype.haloPath;
  26. SeriesRegistry.seriesTypes.pie = Pie3DSeries;