igniteui-angular-gauges
Version:
Ignite UI Angular gauge components.
46 lines (45 loc) • 1.64 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.
*/
export class IgxFormatLinearGraphLabelEventArgs {
constructor() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
}
createImplementation() {
return new FormatLinearGraphLabelEventArgs_internal();
}
get i() {
return this._implementation;
}
onImplementationCreated() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
}
get actualMinimumValue() {
return this.i.actualMinimumValue;
}
get actualMaximumValue() {
return this.i.actualMaximumValue;
}
get value() {
return this.i.value;
}
get label() {
return this.i.label;
}
set label(value) {
this.i.label = value;
}
}