Funnel3DPoint.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* *
  2. *
  3. * Highcharts funnel3d series module
  4. *
  5. * (c) 2010-2021 Highsoft AS
  6. *
  7. * Author: Kacper Madej
  8. *
  9. * License: www.highcharts.com/license
  10. *
  11. * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
  12. *
  13. * */
  14. 'use strict';
  15. var __extends = (this && this.__extends) || (function () {
  16. var extendStatics = function (d, b) {
  17. extendStatics = Object.setPrototypeOf ||
  18. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  19. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  20. return extendStatics(d, b);
  21. };
  22. return function (d, b) {
  23. extendStatics(d, b);
  24. function __() { this.constructor = d; }
  25. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  26. };
  27. })();
  28. import SeriesRegistry from '../../Core/Series/SeriesRegistry.js';
  29. var ColumnSeries = SeriesRegistry.seriesTypes.column;
  30. import U from '../../Core/Utilities.js';
  31. var extend = U.extend;
  32. /* *
  33. *
  34. * Class
  35. *
  36. * */
  37. var Funnel3DPoint = /** @class */ (function (_super) {
  38. __extends(Funnel3DPoint, _super);
  39. function Funnel3DPoint() {
  40. /* *
  41. *
  42. * Properties
  43. *
  44. * */
  45. var _this = _super !== null && _super.apply(this, arguments) || this;
  46. _this.dlBoxRaw = void 0;
  47. _this.options = void 0;
  48. _this.series = void 0;
  49. _this.y = void 0;
  50. return _this;
  51. }
  52. return Funnel3DPoint;
  53. }(ColumnSeries.prototype.pointClass));
  54. extend(Funnel3DPoint.prototype, {
  55. shapeType: 'funnel3d'
  56. });
  57. /* *
  58. *
  59. * Default Export
  60. *
  61. * */
  62. export default Funnel3DPoint;