UNPKG

rp-data-chart

Version:

Rabbitpre data-chart components lib

31 lines (30 loc) 838 B
/** * 分享去向图表类 * @author lifu * @since 2019-5-14 */ import { Component } from 'react'; import { ChartProps } from "../../index"; import './share-path.less'; interface IState { data: Record<string, any> | null; } export declare class SharePathDirect extends Component<ChartProps, IState> { state: IState; componentDidMount(): void; init(): Promise<void>; hangdleChartData(): void; render(): JSX.Element; } declare const _default: { new (opt: import("../..").ChartOptions): { appId: string; pfId: string; container: HTMLElement | null; isLoading: boolean; init(): void; refresh(callback?: (() => void) | undefined): void; destroy(callback?: (() => void) | undefined): void; }; }; export default _default;