UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

58 lines (57 loc) 2.08 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 { UserBaseAnnotationDescription } from "./UserBaseAnnotationDescription"; import { markType } from "./type"; /** * @hidden */ export let UserPointAnnotationDescription = /*@__PURE__*/ (() => { class UserPointAnnotationDescription extends UserBaseAnnotationDescription { constructor() { super(); this.a7 = null; this.az = null; this.a2 = 0; this.a3 = 0; } get_type() { return "UserPointAnnotation"; } get targetSeriesRef() { return this.a7; } set targetSeriesRef(a) { this.a7 = a; this.j("TargetSeriesRef"); } get targetSeriesMatcher() { return this.az; } set targetSeriesMatcher(a) { this.az = a; this.j("TargetSeriesMatcher"); } get xValue() { return this.a2; } set xValue(a) { this.a2 = a; this.j("XValue"); } get yValue() { return this.a3; } set yValue(a) { this.a3 = a; this.j("YValue"); } } UserPointAnnotationDescription.$t = markType(UserPointAnnotationDescription, 'UserPointAnnotationDescription', UserBaseAnnotationDescription.$); UserPointAnnotationDescription.__marshalByValue1 = true; UserPointAnnotationDescription.__marshalByValueAlias1 = "UserPointAnnotation"; return UserPointAnnotationDescription; })();