UNPKG

react-native-responsive-linechart

Version:

Customizable linechart for react-native that works with flex

14 lines (13 loc) 357 B
import * as React from 'react'; import { ChartDataPoint, Label, XYValue, Shape } from './types'; declare type Props = { theme?: { label?: Label; shape?: Shape; formatter?: (value: ChartDataPoint) => string; }; value?: ChartDataPoint; position?: XYValue; }; declare const Tooltip: React.FC<Props>; export { Tooltip };