CylinderPoint.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* *
  2. *
  3. * Highcharts cylinder - a 3D series
  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 ColumnPoint = SeriesRegistry.seriesTypes.column.prototype.pointClass;
  30. import U from '../../Core/Utilities.js';
  31. var extend = U.extend;
  32. /* *
  33. *
  34. * Class
  35. *
  36. * */
  37. var CylinderPoint = /** @class */ (function (_super) {
  38. __extends(CylinderPoint, _super);
  39. function CylinderPoint() {
  40. /* *
  41. *
  42. * Properties
  43. *
  44. * */
  45. var _this = _super !== null && _super.apply(this, arguments) || this;
  46. _this.options = void 0;
  47. _this.series = void 0;
  48. return _this;
  49. }
  50. return CylinderPoint;
  51. }(ColumnPoint));
  52. extend(CylinderPoint.prototype, {
  53. shapeType: 'cylinder'
  54. });
  55. /* *
  56. *
  57. * Default Export
  58. *
  59. * */
  60. export default CylinderPoint;