trinadhkoya / react-native-gifted-charts

Home Page:https://www.npmjs.com/package/react-native-gifted-charts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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


Installation

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

For Pie chart and Donut chart, these additional packages should be installed-

npm i react-native-canvas react-native-webview

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

About

https://www.npmjs.com/package/react-native-gifted-charts


Languages

Language:TypeScript 81.3%Language:JavaScript 12.7%Language:Java 2.8%Language:Objective-C 2.0%Language:Starlark 0.9%Language:Ruby 0.3%