igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
24 lines (23 loc) • 889 B
TypeScript
import { ProgressiveLoadStatusEventArgs as ProgressiveLoadStatusEventArgs_internal } from "./ProgressiveLoadStatusEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
/**
* Provides information about the progressive load progress of the HighDensityScatterSeries.
*/
export declare class IgrProgressiveLoadStatusEventArgs {
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): ProgressiveLoadStatusEventArgs_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor();
protected _provideImplementation(i: any): void;
/**
* The current status from 0 to 100 of the progressive load.
*/
get currentStatus(): number;
set currentStatus(v: number);
}