The most complete library for Bar, Line, Area, Pie, Donut and Stacked Bar charts in React Native. Allows 2D, 3D, gradient, animations and live data updates. https://www.npmjs.com/package/react-native-gifted-charts
Go to file
Abhinandan Kushwaha 0e099255e0
Update PieChartProps.md
2022-04-19 02:16:16 +05:30
__tests__ initial commit 2021-07-30 18:38:12 +05:30
android Added support for large rotated labels on x axis and fixed issue with bar chart values not changing live 2022-02-24 05:18:04 +05:30
demos got rid of canvas and webview 2022-04-19 01:47:12 +05:30
docs Update PieChartProps.md 2022-04-19 02:16:16 +05:30
examples Added examples 2021-08-14 19:07:21 +05:30
ios Added spacing and labelWidth props for each individual bar 2021-10-07 03:44:35 +05:30
src Update todos.md 2022-04-19 02:13:31 +05:30
.buckconfig initial commit 2021-07-30 18:38:12 +05:30
.editorconfig initial commit 2021-07-30 18:38:12 +05:30
.eslintrc.js initial commit 2021-07-30 18:38:12 +05:30
.flowconfig initial commit 2021-07-30 18:38:12 +05:30
.gitattributes initial commit 2021-07-30 18:38:12 +05:30
.gitignore initial commit 2021-07-30 18:38:12 +05:30
.prettierrc.js initial commit 2021-07-30 18:38:12 +05:30
.watchmanconfig initial commit 2021-07-30 18:38:12 +05:30
App.js got rid of canvas and webview 2022-04-19 01:47:12 +05:30
CONTRIBUTING.md Added contributions readme 2021-08-15 23:40:30 +05:30
README.md got rid of canvas and webview 2022-04-19 01:47:12 +05:30
app.json initial commit 2021-07-30 18:38:12 +05:30
babel.config.js initial commit 2021-07-30 18:38:12 +05:30
index.js initial commit 2021-07-30 18:38:12 +05:30
metro.config.js initial commit 2021-07-30 18:38:12 +05:30
package-lock.json Added Bar, Pie, Line and Area Charts 2021-08-02 00:50:13 +05:30
package.json removed @types/react-native-canvas 2022-04-19 02:07:59 +05:30
yarn.lock initial commit 2021-07-30 18:38:12 +05:30

README.md

react-native-gifted-charts Rate on Openbase

The most complete library for Bar, Line, Area, Pie, Donut and Stacked Bar charts in React Native. Allows 2D, 3D, gradient, animations and live data updates.

Yet another chart library? Why?

To bring Life to your data

  1. Plenty of features with minimal code
  2. Apply animations to your charts on load and on value change, just by adding a prop
  3. Smooth animations implemented using LayoutAnimation
  4. Clickable and scrollable
  5. Three-D and gradient effects
  6. Fully customizable (see the props)
  7. Detailed documentation with examples
  8. Support for combined Bar and Line charts

alt text alt text alt text


Version 1.2.x 🎉

Version 1.2.0 onwards we are dependent only on react-native-svg and react-native-linear-gradient. Earlier, Pie and Donut charts were rendered using react-native-canvas, but now they are also rendered using svg. We are no longer using react-native-canvas neither react-native-webview!

Installation

npm install react-native-gifted-charts react-native-linear-gradient react-native-svg

For iOS-

cd ios && pod install

Docs

Documentation and gallery

Usage

The simplest usage of various types of charts can be done as below-

import { BarChart, LineChart, PieChart } from "react-native-gifted-charts";

// ...
const data=[ {value:50}, {value:80}, {value:90}, {value:70} ]

<BarChart data = {data} />
<LineChart data = {data} />
<PieChart data = {data} />

// For Horizontal Bar chart, just add the prop horizontal to the <BarChart/> component

<BarChart data = {data} horizontal />

// For Area chart, just add the prop areaChart to the <LineChart/> component

<LineChart data = {data} areaChart />

// For Donut chart, just add the prop donut to the <PieChart/> component

<PieChart data = {data} donut />

Props tables

1. BarChart, Horizontal BarChart and Stacked Bar Chart props
2. LineChart and AreaChart props
3. PieChart and DonutChart props

Contributing

Dear developers! Your small contribution can make someone's day 😊

One of the ways you can contribute is to address an open issue.

Sometimes people report issues which don't exist, or request for features which are already present. Such issues can be addressed without pushing any code to the repo. Just show them in the comments how to do it.

See the contributing guide to learn how to contribute to the repository and the development workflow.

Common issues

Issue Solution
BarChart - Value and section line don't match Comment by the owner
Invariant Violation: requireNativeComponent: "RNCWebView" was not found in the UIManager. install react-native-webview
Setting height, maxValue, stepValue, stepHeight, or noOfSections breaks the chart Please make sure that
maxValue = noOfSections * stepValue;
is followed. See this

To-dos

To do list

License

MIT