scichart-react
Version:
React wrapper for SciChart JS
12 lines • 634 B
TypeScript
import { DetailedHTMLProps, HTMLAttributes, ReactNode, JSX } from "react";
import { IInitResult } from "./types";
type TDivProps = DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
type TChartGroupLoaderProps = TDivProps & {
fallback?: ReactNode | undefined;
onInit?: (chartInitResults: IInitResult[]) => void;
onInitError?: (error: any) => void;
};
/** The purpose of this component is to hide UI behind a spinner until the charts within it are initialized */
export declare const ChartGroupLoader: (props: TChartGroupLoaderProps) => JSX.Element;
export {};
//# sourceMappingURL=ChartGroupLoader.d.ts.map