react-native-responsive-linechart
Version:
Customizable linechart for react-native that works with flex
14 lines (13 loc) • 357 B
TypeScript
import * as React from 'react';
import { ChartDataPoint, Label, Box, XYValue } from './types';
declare type Props = {
theme?: {
label?: Label;
box?: Box;
formatter?: (value: ChartDataPoint) => string;
};
value?: ChartDataPoint;
position?: XYValue;
};
declare const BoxTooltip: React.FC<Props>;
export { BoxTooltip };