| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /* *
- *
- * License: www.highcharts.com/license
- *
- * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
- *
- * */
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = function (d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- /* *
- *
- * Imports
- *
- * */
- import Point from '../../../Core/Series/Point.js';
- import SeriesRegistry from '../../../Core/Series/SeriesRegistry.js';
- var SMAIndicator = SeriesRegistry.seriesTypes.sma;
- var VBPPoint = /** @class */ (function (_super) {
- __extends(VBPPoint, _super);
- function VBPPoint() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- // Required for destroying negative part of volume
- VBPPoint.prototype.destroy = function () {
- // @todo: this.negativeGraphic doesn't seem to be used anywhere
- if (this.negativeGraphic) {
- this.negativeGraphic = this.negativeGraphic.destroy();
- }
- return Point.prototype.destroy.apply(this, arguments);
- };
- return VBPPoint;
- }(SMAIndicator.prototype.pointClass));
- /* *
- *
- * Default Export
- *
- * */
- export default VBPPoint;
|