UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

67 lines (66 loc) 2.09 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 ChartMouseEventArgsDescription = /*@__PURE__*/ (() => { class ChartMouseEventArgsDescription extends Description { constructor() { super(); this.q = null; this.s = null; this.k = null; this.l = null; this.o = null; } get_type() { return "ChartMouseEventArgs"; } get type() { return this.get_type(); } get item() { return this.q; } set item(a) { this.q = a; this.j("Item"); } get seriesRef() { return this.s; } set seriesRef(a) { this.s = a; this.j("SeriesRef"); } get plotAreaPosition() { return this.k; } set plotAreaPosition(a) { this.k = a; this.j("PlotAreaPosition"); } get worldPosition() { return this.l; } set worldPosition(a) { this.l = a; this.j("WorldPosition"); } get chart() { return this.o; } set chart(a) { this.o = a; this.j("Chart"); } } ChartMouseEventArgsDescription.$t = markType(ChartMouseEventArgsDescription, 'ChartMouseEventArgsDescription', Description.$); return ChartMouseEventArgsDescription; })();