UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

56 lines (55 loc) 1.94 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 { AnnotationLayerDescription } from "./AnnotationLayerDescription"; import { markType } from "./type"; /** * @hidden */ export let TrendLineLayerDescription = /*@__PURE__*/ (() => { class TrendLineLayerDescription extends AnnotationLayerDescription { constructor() { super(); this.gp = null; this.go = null; this.gq = null; this.gm = 0; } get_type() { return "TrendLineLayer"; } get targetSeriesRef() { return this.gp; } set targetSeriesRef(a) { this.gp = a; this.j("TargetSeriesRef"); } get actualTargetSeriesRef() { return this.go; } set actualTargetSeriesRef(a) { this.go = a; this.j("ActualTargetSeriesRef"); } get trendLineType() { return this.gq; } set trendLineType(a) { this.gq = a; this.j("TrendLineType"); } get trendLinePeriod() { return this.gm; } set trendLinePeriod(a) { this.gm = a; this.j("TrendLinePeriod"); } } TrendLineLayerDescription.$t = markType(TrendLineLayerDescription, 'TrendLineLayerDescription', AnnotationLayerDescription.$); return TrendLineLayerDescription; })();