igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
206 lines (205 loc) • 6.82 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 FinancialPriceSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(FinancialPriceSeriesDescription, _super);
function FinancialPriceSeriesDescription() {
var _this = _super.call(this) || this;
_this.ed = null;
_this.ec = null;
_this.d1 = null;
_this.dx = 0;
_this.dz = 0;
_this.d4 = null;
_this.d9 = null;
_this.d7 = null;
_this.d5 = null;
_this.d2 = null;
_this.ea = null;
_this.d8 = null;
_this.d6 = null;
_this.d3 = null;
_this.eb = null;
return _this;
}
FinancialPriceSeriesDescription.prototype.get_type = function () {
return "FinancialPriceSeries";
};
Object.defineProperty(FinancialPriceSeriesDescription.prototype, "trendLineType", {
get: function () {
return this.ed;
},
set: function (a) {
this.ed = a;
this.e("TrendLineType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialPriceSeriesDescription.prototype, "trendLineBrush", {
get: function () {
return this.ec;
},
set: function (a) {
this.ec = a;
this.e("TrendLineBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialPriceSeriesDescription.prototype, "actualTrendLineBrush", {
get: function () {
return this.d1;
},
set: function (a) {
this.d1 = a;
this.e("ActualTrendLineBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialPriceSeriesDescription.prototype, "trendLineThickness", {
get: function () {
return this.dx;
},
set: function (a) {
this.dx = a;
this.e("TrendLineThickness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialPriceSeriesDescription.prototype, "trendLinePeriod", {
get: function () {
return this.dz;
},
set: function (a) {
this.dz = a;
this.e("TrendLinePeriod");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialPriceSeriesDescription.prototype, "displayType", {
get: function () {
return this.d4;
},
set: function (a) {
this.d4 = a;
this.e("DisplayType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialPriceSeriesDescription.prototype, "negativeOutline", {
get: function () {
return this.d9;
},
set: function (a) {
this.d9 = a;
this.e("NegativeOutline");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialPriceSeriesDescription.prototype, "lowMemberAsLegendLabel", {
get: function () {
return this.d7;
},
set: function (a) {
this.d7 = a;
this.e("LowMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialPriceSeriesDescription.prototype, "highMemberAsLegendLabel", {
get: function () {
return this.d5;
},
set: function (a) {
this.d5 = a;
this.e("HighMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialPriceSeriesDescription.prototype, "closeMemberAsLegendLabel", {
get: function () {
return this.d2;
},
set: function (a) {
this.d2 = a;
this.e("CloseMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialPriceSeriesDescription.prototype, "openMemberAsLegendLabel", {
get: function () {
return this.ea;
},
set: function (a) {
this.ea = a;
this.e("OpenMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialPriceSeriesDescription.prototype, "lowMemberAsLegendUnit", {
get: function () {
return this.d8;
},
set: function (a) {
this.d8 = a;
this.e("LowMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialPriceSeriesDescription.prototype, "highMemberAsLegendUnit", {
get: function () {
return this.d6;
},
set: function (a) {
this.d6 = a;
this.e("HighMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialPriceSeriesDescription.prototype, "closeMemberAsLegendUnit", {
get: function () {
return this.d3;
},
set: function (a) {
this.d3 = a;
this.e("CloseMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialPriceSeriesDescription.prototype, "openMemberAsLegendUnit", {
get: function () {
return this.eb;
},
set: function (a) {
this.eb = a;
this.e("OpenMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
FinancialPriceSeriesDescription.$t = markType(FinancialPriceSeriesDescription, 'FinancialPriceSeriesDescription', FinancialSeriesDescription.$);
return FinancialPriceSeriesDescription;
}(FinancialSeriesDescription));
export { FinancialPriceSeriesDescription };