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 { IgxFormatRadialGaugeLabelEventArgs } from "./igx-format-radial-gauge-label-event-args"; import { AlignRadialGaugeLabelEventArgs as AlignRadialGaugeLabelEventArgs_internal } from "./AlignRadialGaugeLabelEventArgs"; /** * Represents event argument for AlignRadialGaugeLabel. */ var IgxAlignRadialGaugeLabelEventArgs = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgxAlignRadialGaugeLabelEventArgs, _super); function IgxAlignRadialGaugeLabelEventArgs() { return _super.call(this) || this; } IgxAlignRadialGaugeLabelEventArgs.prototype.createImplementation = function () { return new AlignRadialGaugeLabelEventArgs_internal(); }; Object.defineProperty(IgxAlignRadialGaugeLabelEventArgs.prototype, "i", { get: function () { return this._implementation; }, enumerable: false, configurable: true }); Object.defineProperty(IgxAlignRadialGaugeLabelEventArgs.prototype, "width", { get: function () { return this.i.width; }, set: function (value) { this.i.width = value; }, enumerable: false, configurable: true }); Object.defineProperty(IgxAlignRadialGaugeLabelEventArgs.prototype, "height", { get: function () { return this.i.height; }, set: function (value) { this.i.height = value; }, enumerable: false, configurable: true }); Object.defineProperty(IgxAlignRadialGaugeLabelEventArgs.prototype, "offsetX", { get: function () { return this.i.offsetX; }, set: function (value) { this.i.offsetX = value; }, enumerable: false, configurable: true }); Object.defineProperty(IgxAlignRadialGaugeLabelEventArgs.prototype, "offsetY", { get: function () { return this.i.offsetY; }, set: function (value) { this.i.offsetY = value; }, enumerable: false, configurable: true }); return IgxAlignRadialGaugeLabelEventArgs; }(IgxFormatRadialGaugeLabelEventArgs)); export { IgxAlignRadialGaugeLabelEventArgs };