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 ce49ee52f8
Merge pull request #357 from sabuhiteymurov/fix/barchart-duplicate-prop-labels
update(docs): BarChartProps.md file to remove duplicate prop labels
2023-08-07 17:44:01 +05:30
.github/ISSUE_TEMPLATE Update issue templates 2022-05-12 17:51:55 +05:30
__tests__ upgraded to version 1.3.0 updated the tests and fixed warnings in Pie and 3D Bar charts 2023-07-02 15:59:10 +05:30
android updated android gradle files 2023-07-01 23:11:22 +05:30
demos Updated the pic for bar-line-pie chart 2022-07-03 17:30:41 +05:30
docs update(docs): BarChartProps.md file to remove duplicate prop labels 2023-08-07 14:22:19 +04:00
examples Fixed some width of Line/Area charts ans onPress on edge of Pie charts 2023-07-03 02:50:14 +05:30
ios updated the dependencies and the App.js file 2023-07-01 20:10:43 +05:30
src updated onPressEnabled to onFocusEnabled and respective onPress to onFocus and default focused point color to orange 2023-07-04 00:32:40 +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 Fixed some width of Line/Area charts ans onPress on edge of Pie charts 2023-07-03 02:50:14 +05:30
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2022-05-12 17:45:59 +05:30
CONTRIBUTING.md Update CONTRIBUTING.md 2022-08-06 19:40:24 +05:30
LICENSE Create LICENSE 2022-05-12 17:39:13 +05:30
README.md Update README.md 2022-08-16 16:28:06 +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
jest.config.js Wrote snapshot tests for 6 bar, 4 line and 4 pie charts 2022-04-28 04:55:32 +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 updated onPressEnabled to onFocusEnabled and respective onPress to onFocus and default focused point color to orange 2023-07-04 00:32:40 +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

Alert:

This library doesn't support web apps yet. Use this library if you are planning mobile first.
However, we are planning to add support for web which will be available soon.


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
Setting height, maxValue, stepValue, stepHeight, or noOfSections breaks the chart Please make sure that
maxValue = noOfSections * stepValue;
is followed. See this
Charts with datasets having negative values (4th quadrant) break https://github.com/Abhinandan-Kushwaha/react-native-gifted-charts/issues/261 Not yest solved

To-dos

To do list

License

MIT