@raspo/recharts

0.16.2 • Public • Published

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 depending only on some D3 submodules
  3. Declarative components, components of charts are purely presentational

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 are clearly separated. The lineChart is composed of x axis, tooltip, grid, and line items, and each of them is an independent React Component. The clear separation and composition of components is one of the principle Recharts follows.

Module Formats

Contribution

We'd love ❤️ to hear what you think we should build. Please create an 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

Dependencies (9)

Dev Dependencies (48)

Package Sidebar

Install

npm i @raspo/recharts

Weekly Downloads

2

Version

0.16.2

License

MIT

Last publish

Collaborators

  • raspo