UNPKG

@lobehub/charts

Version:

React modern charts components built on recharts

17 lines (16 loc) 520 B
import React from 'react'; import { ScatterChartValueFormatter } from "../types/charts"; export interface ScatterChartTooltipProps { active: boolean | undefined; axis: any; category?: string; categoryColors: Map<string, string>; customCategories?: { [key: string]: string; }; label: string; payload: any; valueFormatter: ScatterChartValueFormatter; } declare const ScatterChartTooltip: React.NamedExoticComponent<ScatterChartTooltipProps>; export default ScatterChartTooltip;