igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
73 lines (72 loc) • 2.7 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 { TRIXIndicatorStrategy } from "./TRIXIndicatorStrategy";
import { typeGetValue, markType } from "igniteui-angular-core";
import { Brush } from "igniteui-angular-core";
/**
* @hidden
*/
var TRIXIndicator = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(TRIXIndicator, _super);
function TRIXIndicator() {
var _this = _super.call(this) || this;
_this.aa2 = 0;
_this.trendLineBrush = ((function () {
var $ret = new Brush();
$ret.fill = "#565656";
return $ret;
})());
_this.trendLineType = 9;
_this.trendLinePeriod = 9;
return _this;
}
TRIXIndicator.prototype.bj = function () {
return new TRIXIndicator();
};
TRIXIndicator.prototype.get_abu = function () {
return new TRIXIndicatorStrategy();
};
Object.defineProperty(TRIXIndicator.prototype, "abu", {
get: function () {
return this.get_abu();
},
enumerable: false,
configurable: true
});
TRIXIndicator.prototype.get_ab7 = function () {
return TRIXIndicator.$;
};
Object.defineProperty(TRIXIndicator.prototype, "ab7", {
get: function () {
return this.get_ab7();
},
enumerable: false,
configurable: true
});
Object.defineProperty(TRIXIndicator.prototype, "acf", {
get: function () {
return typeGetValue(this.c(TRIXIndicator.acg));
},
set: function (a) {
this.h(TRIXIndicator.acg, a);
},
enumerable: false,
configurable: true
});
TRIXIndicator.prototype.ab0 = function () {
return this.acf;
};
TRIXIndicator.prototype.ab9 = function (a) {
this.acf = a;
};
TRIXIndicator.$t = markType(TRIXIndicator, 'TRIXIndicator', StrategyBasedIndicator.$);
TRIXIndicator.acg = StrategyBasedIndicator.acc(15, TRIXIndicator.$);
return TRIXIndicator;
}(StrategyBasedIndicator));
export { TRIXIndicator };