igniteui-react-core
Version:
Ignite UI React Core.
122 lines (121 loc) • 4.03 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.gg = null;
_this.gb = 0;
_this.gi = null;
_this.gh = null;
_this.gf = null;
_this.f9 = 0;
_this.f7 = null;
_this.gc = 0;
return _this;
}
FinancialIndicatorDescription.prototype.get_type = function () {
return "FinancialIndicator";
};
Object.defineProperty(FinancialIndicatorDescription.prototype, "displayType", {
get: function () {
return this.gg;
},
set: function (a) {
this.gg = a;
this.g("DisplayType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "ignoreFirst", {
get: function () {
return this.gb;
},
set: function (a) {
this.gb = a;
this.g("IgnoreFirst");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "trendLineType", {
get: function () {
return this.gi;
},
set: function (a) {
this.gi = a;
this.g("TrendLineType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "trendLineBrush", {
get: function () {
return this.gh;
},
set: function (a) {
this.gh = a;
this.g("TrendLineBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "actualTrendLineBrush", {
get: function () {
return this.gf;
},
set: function (a) {
this.gf = a;
this.g("ActualTrendLineBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "trendLineThickness", {
get: function () {
return this.f9;
},
set: function (a) {
this.f9 = a;
this.g("TrendLineThickness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "trendLineDashArray", {
get: function () {
return this.f7;
},
set: function (a) {
this.f7 = a;
this.g("TrendLineDashArray");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialIndicatorDescription.prototype, "trendLinePeriod", {
get: function () {
return this.gc;
},
set: function (a) {
this.gc = a;
this.g("TrendLinePeriod");
},
enumerable: false,
configurable: true
});
FinancialIndicatorDescription.$t = markType(FinancialIndicatorDescription, 'FinancialIndicatorDescription', FinancialSeriesDescription.$);
return FinancialIndicatorDescription;
}(FinancialSeriesDescription));
export { FinancialIndicatorDescription };