UNPKG

scichart-react

Version:

React wrapper for SciChart JS

12 lines 576 B
import { PropsWithChildren, JSX } from "react"; import { IInitResult } from "./types"; export type TSciChartGroupProps = PropsWithChildren<{ onInit?: (chartInitResults: IInitResult[]) => void; onDelete?: (chartInitResults: IInitResult[]) => void; }>; /** * Provides a common context for multiple wrapped {@link SciChartReact} elements. * Accepts callbacks used after all of chart within group are initialized and when they are unmounted. */ export declare const SciChartGroup: (props: TSciChartGroupProps) => JSX.Element; //# sourceMappingURL=SciChartGroup.d.ts.map