Skip to content

mjul/recharts

 
 

Repository files navigation

Recharts

Build Status Coverage Status npm version npm downloads Gitter

Intro

Recharts is a Redefined chart library built with React and D3.

The main purpose of this library is to help you to write charts in React applications without any pain. Main principles of Recharts are:

  1. Simply deploy with React components
  2. Native SVG support, lightweight depend on some D3 submodules
  3. Declarative components, components of chart are purely presentational

Roadmap

v1.0 release plan

Expected release: April 2016

  • Build babel-plugin-recharts (pack on required)
  • Great animation support
  • Good documentation
  • Cascade Chart
  • Wireless support
  • 90% code test coverage

Examples

<LineChart
  width={400}
  height={400}
  data={data}
  margin={{ top: 5, right: 20, left: 10, bottom: 5 }}
>
  <XAxis dataKey="name" />
  <Tooltip />
  <CartesianGrid stroke="#f5f5f5" />
  <Line type="monotone" dataKey="uv" stroke="#ff7300" yAxisId={0} />
  <Line type="monotone" dataKey="pv" stroke="#387908" yAxisId={1} />
</LineChart>

All the components of Recharts is clearly separated. The lineChart is composed by x axis, tooltip, grid, and line items, and each of them is an independent React Component. The clear seperation and composition of components is one of the principle Recharts follow.

Contribution

We'd love ❤️ to hear what you think we should build. Please create a issue to write your usage or ideas.

We are looking for like-minded people who share the same idea about Recharts. The goal of this project is create a more flexible charting library for the React community.

License

MIT

Copyright (c) 2015-2016 Recharts Group

About

Redefined chart library built with React and D3

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 99.8%
  • Other 0.2%