igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
194 lines (193 loc) • 6.21 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 { SeriesDescription } from "./SeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
var FinancialSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(FinancialSeriesDescription, _super);
function FinancialSeriesDescription() {
var _this = _super.call(this) || this;
_this.dc = null;
_this.di = null;
_this.dj = null;
_this.dd = null;
_this.da = null;
_this.db = null;
_this.c9 = null;
_this.dh = null;
_this.c4 = false;
_this.de = null;
_this.c5 = false;
_this.c8 = null;
_this.df = null;
_this.dg = null;
return _this;
}
FinancialSeriesDescription.prototype.get_type = function () {
return "FinancialSeries";
};
Object.defineProperty(FinancialSeriesDescription.prototype, "negativeBrush", {
get: function () {
return this.dc;
},
set: function (a) {
this.dc = a;
this.e("NegativeBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialSeriesDescription.prototype, "xAxisRef", {
get: function () {
return this.di;
},
set: function (a) {
this.di = a;
this.e("XAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialSeriesDescription.prototype, "yAxisRef", {
get: function () {
return this.dj;
},
set: function (a) {
this.dj = a;
this.e("YAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialSeriesDescription.prototype, "openMemberPath", {
get: function () {
return this.dd;
},
set: function (a) {
this.dd = a;
this.e("OpenMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialSeriesDescription.prototype, "highMemberPath", {
get: function () {
return this.da;
},
set: function (a) {
this.da = a;
this.e("HighMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialSeriesDescription.prototype, "lowMemberPath", {
get: function () {
return this.db;
},
set: function (a) {
this.db = a;
this.e("LowMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialSeriesDescription.prototype, "closeMemberPath", {
get: function () {
return this.c9;
},
set: function (a) {
this.c9 = a;
this.e("CloseMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialSeriesDescription.prototype, "volumeMemberPath", {
get: function () {
return this.dh;
},
set: function (a) {
this.dh = a;
this.e("VolumeMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialSeriesDescription.prototype, "isCustomCategoryStyleAllowed", {
get: function () {
return this.c4;
},
set: function (a) {
this.c4 = a;
this.e("IsCustomCategoryStyleAllowed");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialSeriesDescription.prototype, "transitionInMode", {
get: function () {
return this.de;
},
set: function (a) {
this.de = a;
this.e("TransitionInMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialSeriesDescription.prototype, "isTransitionInEnabled", {
get: function () {
return this.c5;
},
set: function (a) {
this.c5 = a;
this.e("IsTransitionInEnabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialSeriesDescription.prototype, "assigningCategoryStyleRef", {
get: function () {
return this.c8;
},
set: function (a) {
this.c8 = a;
this.e("AssigningCategoryStyleRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialSeriesDescription.prototype, "typicalRef", {
get: function () {
return this.df;
},
set: function (a) {
this.df = a;
this.e("TypicalRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialSeriesDescription.prototype, "typicalBasedOnRef", {
get: function () {
return this.dg;
},
set: function (a) {
this.dg = a;
this.e("TypicalBasedOnRef");
},
enumerable: false,
configurable: true
});
FinancialSeriesDescription.$t = markType(FinancialSeriesDescription, 'FinancialSeriesDescription', SeriesDescription.$);
return FinancialSeriesDescription;
}(SeriesDescription));
export { FinancialSeriesDescription };