igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
110 lines (109 loc) • 3.79 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.d4 = null;
_this.dz = 0;
_this.d6 = null;
_this.d5 = null;
_this.d3 = null;
_this.dx = 0;
_this.d0 = 0;
return _this;
}
FinancialIndicatorDescription.prototype.get_type = function () {
return "FinancialIndicator";
};
Object.defineProperty(FinancialIndicatorDescription.prototype, "displayType", {
get: function () {
return this.d4;
},
set: function (a) {
this.d4 = a;
this.e("DisplayType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "ignoreFirst", {
get: function () {
return this.dz;
},
set: function (a) {
this.dz = a;
this.e("IgnoreFirst");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "trendLineType", {
get: function () {
return this.d6;
},
set: function (a) {
this.d6 = a;
this.e("TrendLineType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "trendLineBrush", {
get: function () {
return this.d5;
},
set: function (a) {
this.d5 = a;
this.e("TrendLineBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "actualTrendLineBrush", {
get: function () {
return this.d3;
},
set: function (a) {
this.d3 = a;
this.e("ActualTrendLineBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "trendLineThickness", {
get: function () {
return this.dx;
},
set: function (a) {
this.dx = a;
this.e("TrendLineThickness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "trendLinePeriod", {
get: function () {
return this.d0;
},
set: function (a) {
this.d0 = a;
this.e("TrendLinePeriod");
},
enumerable: false,
configurable: true
});
FinancialIndicatorDescription.$t = markType(FinancialIndicatorDescription, 'FinancialIndicatorDescription', FinancialSeriesDescription.$);
return FinancialIndicatorDescription;
}(FinancialSeriesDescription));
export { FinancialIndicatorDescription };