UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

74 lines (73 loc) 2.69 kB
/* 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.gp = null; _this.go = null; _this.gq = null; _this.gm = 0; return _this; } TrendLineLayerDescription.prototype.get_type = function () { return "TrendLineLayer"; }; Object.defineProperty(TrendLineLayerDescription.prototype, "targetSeriesRef", { get: function () { return this.gp; }, set: function (a) { this.gp = a; this.j("TargetSeriesRef"); }, enumerable: false, configurable: true }); Object.defineProperty(TrendLineLayerDescription.prototype, "actualTargetSeriesRef", { get: function () { return this.go; }, set: function (a) { this.go = a; this.j("ActualTargetSeriesRef"); }, enumerable: false, configurable: true }); Object.defineProperty(TrendLineLayerDescription.prototype, "trendLineType", { get: function () { return this.gq; }, set: function (a) { this.gq = a; this.j("TrendLineType"); }, enumerable: false, configurable: true }); Object.defineProperty(TrendLineLayerDescription.prototype, "trendLinePeriod", { get: function () { return this.gm; }, set: function (a) { this.gm = a; this.j("TrendLinePeriod"); }, enumerable: false, configurable: true }); TrendLineLayerDescription.$t = markType(TrendLineLayerDescription, 'TrendLineLayerDescription', AnnotationLayerDescription.$); return TrendLineLayerDescription; }(AnnotationLayerDescription)); export { TrendLineLayerDescription };