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