UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

117 lines (116 loc) 4.07 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 DataChartMouseButtonEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(DataChartMouseButtonEventArgsDescription, _super); function DataChartMouseButtonEventArgsDescription() { var _this = _super.call(this) || this; _this.t = false; _this.s = false; _this.w = null; _this.o = null; _this.k = null; _this.l = null; _this.q = null; return _this; } DataChartMouseButtonEventArgsDescription.prototype.get_type = function () { return "DataChartMouseButtonEventArgs"; }; Object.defineProperty(DataChartMouseButtonEventArgsDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(DataChartMouseButtonEventArgsDescription.prototype, "handled", { get: function () { return this.t; }, set: function (a) { this.t = a; this.j("Handled"); }, enumerable: false, configurable: true }); Object.defineProperty(DataChartMouseButtonEventArgsDescription.prototype, "cancelSelection", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("CancelSelection"); }, enumerable: false, configurable: true }); Object.defineProperty(DataChartMouseButtonEventArgsDescription.prototype, "itemRef", { get: function () { return this.w; }, set: function (a) { this.w = a; this.j("ItemRef"); }, enumerable: false, configurable: true }); Object.defineProperty(DataChartMouseButtonEventArgsDescription.prototype, "series", { get: function () { return this.o; }, set: function (a) { this.o = a; this.j("Series"); }, enumerable: false, configurable: true }); Object.defineProperty(DataChartMouseButtonEventArgsDescription.prototype, "plotAreaPosition", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("PlotAreaPosition"); }, enumerable: false, configurable: true }); Object.defineProperty(DataChartMouseButtonEventArgsDescription.prototype, "worldPosition", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("WorldPosition"); }, enumerable: false, configurable: true }); Object.defineProperty(DataChartMouseButtonEventArgsDescription.prototype, "chart", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("Chart"); }, enumerable: false, configurable: true }); DataChartMouseButtonEventArgsDescription.$t = markType(DataChartMouseButtonEventArgsDescription, 'DataChartMouseButtonEventArgsDescription', Description.$); return DataChartMouseButtonEventArgsDescription; }(Description)); export { DataChartMouseButtonEventArgsDescription };