igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
48 lines (47 loc) • 1.7 kB
JavaScript
import { ChartResizeIdleEventArgs as ChartResizeIdleEventArgs_internal } from "./ChartResizeIdleEventArgs";
/**
* Provides information about the chart going idle from being resized.
*/
var IgrChartResizeIdleEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrChartResizeIdleEventArgs() {
this.mounted = false;
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgrChartResizeIdleEventArgs.prototype.createImplementation = function () {
return new ChartResizeIdleEventArgs_internal();
};
Object.defineProperty(IgrChartResizeIdleEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrChartResizeIdleEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrChartResizeIdleEventArgs.prototype.onImplementationCreated = function () {
};
IgrChartResizeIdleEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
return IgrChartResizeIdleEventArgs;
}());
export { IgrChartResizeIdleEventArgs };