UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

75 lines (74 loc) 2.33 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let CalloutLabelUpdatingEventArgsDescription = /*@__PURE__*/ (() => { class CalloutLabelUpdatingEventArgsDescription extends Description { constructor() { super(); this.p = null; this.q = null; this.m = null; this.k = null; this.o = null; this.n = null; } get_type() { return "CalloutLabelUpdatingEventArgs"; } get type() { return this.get_type(); } get xValueRef() { return this.p; } set xValueRef(a) { this.p = a; this.j("XValueRef"); } get yValueRef() { return this.q; } set yValueRef(a) { this.q = a; this.j("YValueRef"); } get itemRef() { return this.m; } set itemRef(a) { this.m = a; this.j("ItemRef"); } get series() { return this.k; } set series(a) { this.k = a; this.j("Series"); } get seriesName() { return this.o; } set seriesName(a) { this.o = a; this.j("SeriesName"); } get labelRef() { return this.n; } set labelRef(a) { this.n = a; this.j("LabelRef"); } } CalloutLabelUpdatingEventArgsDescription.$t = markType(CalloutLabelUpdatingEventArgsDescription, 'CalloutLabelUpdatingEventArgsDescription', Description.$); return CalloutLabelUpdatingEventArgsDescription; })();