igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
40 lines (39 loc) • 1.36 kB
JavaScript
/**
* Provides information about the progressive load progress of the HighDensityScatterSeries.
*/
var IgxProgressiveLoadStatusEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxProgressiveLoadStatusEventArgs() {
}
Object.defineProperty(IgxProgressiveLoadStatusEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxProgressiveLoadStatusEventArgs.prototype.onImplementationCreated = function () {
};
IgxProgressiveLoadStatusEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
Object.defineProperty(IgxProgressiveLoadStatusEventArgs.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 IgxProgressiveLoadStatusEventArgs;
}());
export { IgxProgressiveLoadStatusEventArgs };