igniteui-angular-gauges
Version:
Ignite UI Angular gauge components.
68 lines (67 loc) • 2.83 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 { FormatLinearGraphLabelEventArgs as FormatLinearGraphLabelEventArgs_internal } from "./FormatLinearGraphLabelEventArgs";
/**
* Represents event argument for FormatLinearGraphLabel.
*/
var IgxFormatLinearGraphLabelEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxFormatLinearGraphLabelEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
}
IgxFormatLinearGraphLabelEventArgs.prototype.createImplementation = function () {
return new FormatLinearGraphLabelEventArgs_internal();
};
Object.defineProperty(IgxFormatLinearGraphLabelEventArgs.prototype, "i", {
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxFormatLinearGraphLabelEventArgs.prototype.onImplementationCreated = function () {
};
IgxFormatLinearGraphLabelEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
Object.defineProperty(IgxFormatLinearGraphLabelEventArgs.prototype, "actualMinimumValue", {
get: function () {
return this.i.actualMinimumValue;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFormatLinearGraphLabelEventArgs.prototype, "actualMaximumValue", {
get: function () {
return this.i.actualMaximumValue;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFormatLinearGraphLabelEventArgs.prototype, "value", {
get: function () {
return this.i.value;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxFormatLinearGraphLabelEventArgs.prototype, "label", {
get: function () {
return this.i.label;
},
set: function (value) {
this.i.label = value;
},
enumerable: false,
configurable: true
});
return IgxFormatLinearGraphLabelEventArgs;
}());
export { IgxFormatLinearGraphLabelEventArgs };