highcharts
Version:
JavaScript charting framework
50 lines (49 loc) • 1.59 kB
JavaScript
/* *
*
* 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;