igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
46 lines (45 loc) • 2.05 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { StrategyBasedIndicator } from "./StrategyBasedIndicator";
import { PriceVolumeTrendIndicatorStrategy } from "./PriceVolumeTrendIndicatorStrategy";
import { markType } from "igniteui-angular-core";
/**
* @hidden
*/
var PriceVolumeTrendIndicator = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(PriceVolumeTrendIndicator, _super);
function PriceVolumeTrendIndicator() {
return _super !== null && _super.apply(this, arguments) || this;
}
PriceVolumeTrendIndicator.prototype.bj = function () {
return new PriceVolumeTrendIndicator();
};
PriceVolumeTrendIndicator.prototype.get_abu = function () {
return new PriceVolumeTrendIndicatorStrategy();
};
Object.defineProperty(PriceVolumeTrendIndicator.prototype, "abu", {
get: function () {
return this.get_abu();
},
enumerable: false,
configurable: true
});
PriceVolumeTrendIndicator.prototype.get_ab7 = function () {
return PriceVolumeTrendIndicator.$;
};
Object.defineProperty(PriceVolumeTrendIndicator.prototype, "ab7", {
get: function () {
return this.get_ab7();
},
enumerable: false,
configurable: true
});
PriceVolumeTrendIndicator.$t = markType(PriceVolumeTrendIndicator, 'PriceVolumeTrendIndicator', StrategyBasedIndicator.$);
return PriceVolumeTrendIndicator;
}(StrategyBasedIndicator));
export { PriceVolumeTrendIndicator };