UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

91 lines (90 loc) 2.72 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 AxisMouseEventArgsDescription = /*@__PURE__*/ (() => { class AxisMouseEventArgsDescription extends Description { constructor() { super(); this.u = null; this.s = 0; this.q = new Date(); this.k = null; this.l = null; this.m = null; this.v = null; this.w = null; } get_type() { return "AxisMouseEventArgs"; } get type() { return this.get_type(); } get axisRef() { return this.u; } set axisRef(a) { this.u = a; this.j("AxisRef"); } get axisValue() { return this.s; } set axisValue(a) { this.s = a; this.j("AxisValue"); } get axisDateValue() { return this.q; } set axisDateValue(a) { this.q = a; this.j("AxisDateValue"); } get chartPosition() { return this.k; } set chartPosition(a) { this.k = a; this.j("ChartPosition"); } get plotAreaPosition() { return this.l; } set plotAreaPosition(a) { this.l = a; this.j("PlotAreaPosition"); } get worldPosition() { return this.m; } set worldPosition(a) { this.m = a; this.j("WorldPosition"); } get label() { return this.v; } set label(a) { this.v = a; this.j("Label"); } get labelContextRef() { return this.w; } set labelContextRef(a) { this.w = a; this.j("LabelContextRef"); } } AxisMouseEventArgsDescription.$t = markType(AxisMouseEventArgsDescription, 'AxisMouseEventArgsDescription', Description.$); return AxisMouseEventArgsDescription; })();