igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
51 lines (50 loc) • 1.68 kB
JavaScript
/**
* Provides information about the progressive load progress of the HighDensityScatterSeries.
*/
var IgrProgressiveLoadStatusEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrProgressiveLoadStatusEventArgs() {
this.mounted = false;
}
Object.defineProperty(IgrProgressiveLoadStatusEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrProgressiveLoadStatusEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrProgressiveLoadStatusEventArgs.prototype.onImplementationCreated = function () {
};
IgrProgressiveLoadStatusEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgrProgressiveLoadStatusEventArgs.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 IgrProgressiveLoadStatusEventArgs;
}());
export { IgrProgressiveLoadStatusEventArgs };