react-native-bar-graph
Version:
Customizable bar graph react native
33 lines (22 loc) • 599 B
Markdown
# 📊 react-native-barchart
A customizable and lightweight bar chart component for React Native apps.
## ✨ Features
- 📦 Easy to use
- 🎨 Customizable colors, height, and animations
- ⚡ Smooth performance with `Animated`
- 💡 Great for dashboards, analytics, and data display
## 🚀 Installation
```bash
npm install react-native-bar-graph
# or
yarn add react-native-bar-graph
```
import Bargraph from 'react-native-bar-graph';
const data = [
{ label: 'Jan', value: 40 },
{ label: 'Feb', value: 60 },
{ label: 'Mar', value: 30 }
];
<Bargraph data={data} height={200} />