igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
33 lines (32 loc) • 774 B
JavaScript
/**
* Provides information about the progressive load progress of the HighDensityScatterSeries.
*/
export class IgcProgressiveLoadStatusEventArgs {
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
constructor() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
/**
* The current status from 0 to 100 of the progressive load.
*/
get currentStatus() {
return this.i.currentStatus;
}
set currentStatus(v) {
this.i.currentStatus = +v;
}
}