igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
122 lines (121 loc) • 4.15 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 { FinancialSeriesDescription } from "./FinancialSeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
var FinancialIndicatorDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(FinancialIndicatorDescription, _super);
function FinancialIndicatorDescription() {
var _this = _super.call(this) || this;
_this.gl = null;
_this.gg = 0;
_this.gn = null;
_this.gm = null;
_this.gk = null;
_this.ge = 0;
_this.gc = null;
_this.gh = 0;
return _this;
}
FinancialIndicatorDescription.prototype.get_type = function () {
return "FinancialIndicator";
};
Object.defineProperty(FinancialIndicatorDescription.prototype, "displayType", {
get: function () {
return this.gl;
},
set: function (a) {
this.gl = a;
this.j("DisplayType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "ignoreFirst", {
get: function () {
return this.gg;
},
set: function (a) {
this.gg = a;
this.j("IgnoreFirst");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "trendLineType", {
get: function () {
return this.gn;
},
set: function (a) {
this.gn = a;
this.j("TrendLineType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "trendLineBrush", {
get: function () {
return this.gm;
},
set: function (a) {
this.gm = a;
this.j("TrendLineBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "actualTrendLineBrush", {
get: function () {
return this.gk;
},
set: function (a) {
this.gk = a;
this.j("ActualTrendLineBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "trendLineThickness", {
get: function () {
return this.ge;
},
set: function (a) {
this.ge = a;
this.j("TrendLineThickness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "trendLineDashArray", {
get: function () {
return this.gc;
},
set: function (a) {
this.gc = a;
this.j("TrendLineDashArray");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "trendLinePeriod", {
get: function () {
return this.gh;
},
set: function (a) {
this.gh = a;
this.j("TrendLinePeriod");
},
enumerable: false,
configurable: true
});
FinancialIndicatorDescription.$t = markType(FinancialIndicatorDescription, 'FinancialIndicatorDescription', FinancialSeriesDescription.$);
return FinancialIndicatorDescription;
}(FinancialSeriesDescription));
export { FinancialIndicatorDescription };