igniteui-angular-gauges
Version:
Ignite UI Angular gauge components.
89 lines (88 loc) • 3.52 kB
JavaScript
/*
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 { FormatRadialGaugeLabelEventArgs as FormatRadialGaugeLabelEventArgs_internal } from "./FormatRadialGaugeLabelEventArgs";
/**
* Represents event argument for FormatRadialGaugeLabel.
*/
var IgxFormatRadialGaugeLabelEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxFormatRadialGaugeLabelEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
}
IgxFormatRadialGaugeLabelEventArgs.prototype.createImplementation = function () {
return new FormatRadialGaugeLabelEventArgs_internal();
};
Object.defineProperty(IgxFormatRadialGaugeLabelEventArgs.prototype, "i", {
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxFormatRadialGaugeLabelEventArgs.prototype.onImplementationCreated = function () {
};
IgxFormatRadialGaugeLabelEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
Object.defineProperty(IgxFormatRadialGaugeLabelEventArgs.prototype, "actualMinimumValue", {
get: function () {
return this.i.actualMinimumValue;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFormatRadialGaugeLabelEventArgs.prototype, "actualMaximumValue", {
get: function () {
return this.i.actualMaximumValue;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFormatRadialGaugeLabelEventArgs.prototype, "startAngle", {
get: function () {
return this.i.startAngle;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFormatRadialGaugeLabelEventArgs.prototype, "endAngle", {
get: function () {
return this.i.endAngle;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFormatRadialGaugeLabelEventArgs.prototype, "angle", {
get: function () {
return this.i.angle;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFormatRadialGaugeLabelEventArgs.prototype, "value", {
get: function () {
return this.i.value;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFormatRadialGaugeLabelEventArgs.prototype, "label", {
get: function () {
return this.i.label;
},
set: function (value) {
this.i.label = value;
},
enumerable: false,
configurable: true
});
return IgxFormatRadialGaugeLabelEventArgs;
}());
export { IgxFormatRadialGaugeLabelEventArgs };