UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

129 lines (128 loc) 4.24 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 { __extends } from "tslib"; import { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var AxisMouseEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(AxisMouseEventArgsDescription, _super); function AxisMouseEventArgsDescription() { var _this = _super.call(this) || this; _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; return _this; } AxisMouseEventArgsDescription.prototype.get_type = function () { return "AxisMouseEventArgs"; }; Object.defineProperty(AxisMouseEventArgsDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(AxisMouseEventArgsDescription.prototype, "axisRef", { get: function () { return this.u; }, set: function (a) { this.u = a; this.j("AxisRef"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisMouseEventArgsDescription.prototype, "axisValue", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("AxisValue"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisMouseEventArgsDescription.prototype, "axisDateValue", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("AxisDateValue"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisMouseEventArgsDescription.prototype, "chartPosition", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("ChartPosition"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisMouseEventArgsDescription.prototype, "plotAreaPosition", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("PlotAreaPosition"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisMouseEventArgsDescription.prototype, "worldPosition", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("WorldPosition"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisMouseEventArgsDescription.prototype, "label", { get: function () { return this.v; }, set: function (a) { this.v = a; this.j("Label"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisMouseEventArgsDescription.prototype, "labelContextRef", { get: function () { return this.w; }, set: function (a) { this.w = a; this.j("LabelContextRef"); }, enumerable: false, configurable: true }); AxisMouseEventArgsDescription.$t = markType(AxisMouseEventArgsDescription, 'AxisMouseEventArgsDescription', Description.$); return AxisMouseEventArgsDescription; }(Description)); export { AxisMouseEventArgsDescription };