UNPKG

igniteui-angular-gauges

Version:

Ignite UI Angular gauge components.

71 lines (70 loc) 2.82 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 { IgxFormatLinearGraphLabelEventArgs } from "./igx-format-linear-graph-label-event-args"; import { AlignLinearGraphLabelEventArgs as AlignLinearGraphLabelEventArgs_internal } from "./AlignLinearGraphLabelEventArgs"; /** * Represents event argument for AlignLinearGraphLabel. */ var IgxAlignLinearGraphLabelEventArgs = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgxAlignLinearGraphLabelEventArgs, _super); function IgxAlignLinearGraphLabelEventArgs() { return _super.call(this) || this; } IgxAlignLinearGraphLabelEventArgs.prototype.createImplementation = function () { return new AlignLinearGraphLabelEventArgs_internal(); }; Object.defineProperty(IgxAlignLinearGraphLabelEventArgs.prototype, "i", { get: function () { return this._implementation; }, enumerable: false, configurable: true }); Object.defineProperty(IgxAlignLinearGraphLabelEventArgs.prototype, "width", { get: function () { return this.i.width; }, set: function (value) { this.i.width = value; }, enumerable: false, configurable: true }); Object.defineProperty(IgxAlignLinearGraphLabelEventArgs.prototype, "height", { get: function () { return this.i.height; }, set: function (value) { this.i.height = value; }, enumerable: false, configurable: true }); Object.defineProperty(IgxAlignLinearGraphLabelEventArgs.prototype, "offsetX", { get: function () { return this.i.offsetX; }, set: function (value) { this.i.offsetX = value; }, enumerable: false, configurable: true }); Object.defineProperty(IgxAlignLinearGraphLabelEventArgs.prototype, "offsetY", { get: function () { return this.i.offsetY; }, set: function (value) { this.i.offsetY = value; }, enumerable: false, configurable: true }); return IgxAlignLinearGraphLabelEventArgs; }(IgxFormatLinearGraphLabelEventArgs)); export { IgxAlignLinearGraphLabelEventArgs };