react-native-bar-graph
Version:
Customizable bar graph react native
17 lines (13 loc) • 322 B
TypeScript
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;