UNPKG

@qn-pandora/pandora-visualization

Version:

Pandora 通用可视化库

23 lines (22 loc) 1.08 kB
/// <reference types="react" /> /// <reference types="hoist-non-react-statics" /> import BasicComponent from '../../../../../components/Base/BasicComponent'; import PieChartStore from '../../store'; import PieRingBaseStyleService from '../../../../../base-pandora-visualization/services/chart-style/charts/pie/ring-base'; interface IHoverEventProps { store: PieChartStore; } export declare class HoverEvent extends BasicComponent<IHoverEventProps, any> { playInterval: any; chartStyleService: PieRingBaseStyleService; get echartInst(): any; handleMouseover: (params: any) => void; handleMouseout: () => void; startListen(): void; stopListen(): void; componentDidMount(): void; componentWillUnmount(): void; render(): null; } declare const _default: import("react").ComponentClass<IHoverEventProps, any> & import("hoist-non-react-statics").NonReactStatics<(import("react").ComponentClass<IHoverEventProps, any> & typeof HoverEvent) | (import("react").FunctionComponent<IHoverEventProps> & typeof HoverEvent), {}>; export default _default;