igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
43 lines (42 loc) • 1.41 kB
JavaScript
/**
* Provides information about the progressive load progress of the HighDensityScatterSeries.
*/
var IgcProgressiveLoadStatusEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgcProgressiveLoadStatusEventArgs() {
}
Object.defineProperty(IgcProgressiveLoadStatusEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgcProgressiveLoadStatusEventArgs.prototype.onImplementationCreated = function () {
};
IgcProgressiveLoadStatusEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgcProgressiveLoadStatusEventArgs.prototype, "currentStatus", {
/**
* The current status from 0 to 100 of the progressive load.
*/
get: function () {
return this.i.currentStatus;
},
set: function (v) {
this.i.currentStatus = +v;
},
enumerable: false,
configurable: true
});
return IgcProgressiveLoadStatusEventArgs;
}());
export { IgcProgressiveLoadStatusEventArgs };