UNPKG

react-financial-charts

Version:
37 lines (36 loc) 1.06 kB
import * as React from "react"; interface ClickableCircleProps { readonly xyProvider?: any; readonly onDragStart: any; readonly onDrag: any; readonly onDragComplete: any; readonly strokeWidth: number; readonly stroke: string; readonly fill: string; readonly r: number; readonly cx?: number; readonly cy?: number; readonly className: string; readonly show: boolean; readonly strokeOpacity: number; readonly fillOpacity: number; readonly interactiveCursorClass?: string; } export declare class ClickableCircle extends React.Component<ClickableCircleProps> { static defaultProps: { className: string; onDragStart: () => void; onDrag: () => void; onDragComplete: () => void; onMove: () => void; show: boolean; fillOpacity: number; strokeOpacity: number; }; render(): JSX.Element | null; private readonly renderSVG; private readonly drawOnCanvas; private readonly isHover; private readonly helper; } export {};