UNPKG

react-native-bar-graph

Version:
17 lines (13 loc) 322 B
import { ViewStyle } from "react-native"; interface BarGraphProps { data: Array<any>; height?: number; width?: number; barWidth?: number; spacing?: number; numOfYAxisLabels?: number; showGridLines?: boolean; style?: ViewStyle; } declare const Bargraph: React.FC<BarGraphProps>; export default Bargraph;