igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
30 lines (29 loc) • 713 B
JavaScript
/**
* Provides information about the progressive load progress of the HighDensityScatterSeries.
*/
export class IgxProgressiveLoadStatusEventArgs {
constructor() {
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
}
/**
* The current status from 0 to 100 of the progressive load.
*/
get currentStatus() {
return this.i.currentStatus;
}
set currentStatus(v) {
this.i.currentStatus = +v;
}
}