igniteui-react-core
Version:
Ignite UI React Core.
74 lines (73 loc) • 2.6 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 { AnnotationLayerDescription } from "./AnnotationLayerDescription";
import { markType } from "./type";
/**
* @hidden
*/
var TrendLineLayerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(TrendLineLayerDescription, _super);
function TrendLineLayerDescription() {
var _this = _super.call(this) || this;
_this.gh = null;
_this.gi = null;
_this.gj = null;
_this.gf = 0;
return _this;
}
TrendLineLayerDescription.prototype.get_type = function () {
return "TrendLineLayer";
};
Object.defineProperty(TrendLineLayerDescription.prototype, "targetSeriesName", {
get: function () {
return this.gh;
},
set: function (a) {
this.gh = a;
this.g("TargetSeriesName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TrendLineLayerDescription.prototype, "targetSeriesRef", {
get: function () {
return this.gi;
},
set: function (a) {
this.gi = a;
this.g("TargetSeriesRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TrendLineLayerDescription.prototype, "trendLineType", {
get: function () {
return this.gj;
},
set: function (a) {
this.gj = a;
this.g("TrendLineType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TrendLineLayerDescription.prototype, "trendLinePeriod", {
get: function () {
return this.gf;
},
set: function (a) {
this.gf = a;
this.g("TrendLinePeriod");
},
enumerable: false,
configurable: true
});
TrendLineLayerDescription.$t = markType(TrendLineLayerDescription, 'TrendLineLayerDescription', AnnotationLayerDescription.$);
return TrendLineLayerDescription;
}(AnnotationLayerDescription));
export { TrendLineLayerDescription };