Popularity
7.1
Growing
Activity
2.2
-
1,546
29
332

Monthly Downloads: 0
Programming language: TypeScript
License: MIT License
Tags: UI Components     Chart     React     Charts     Google    
Latest version: v4.0.0

react-google-charts alternatives and similar libraries

Based on the "Chart" category.
Alternatively, view react-google-charts alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of react-google-charts or a related project?

Add another 'Chart' Library

README

React Google Charts

A thin, typed, React wrapper for Google Charts.

version downloads license bundle size

Quickstart   โ€ข   Docs   โ€ข   Contributing   โ€ข   Stack Overflow

Quickstart

Install this library with your favorite package manager:

yarn add react-google-charts

or

npm install --save react-google-charts

Then, import and use it:

import { Chart } from "react-google-charts";

<Chart
  chartType="ScatterChart"
  data={[["Age", "Weight"], [4, 5.5], [8, 12]]}
  width="100%"
  height="400px"
  legendToggle
/>

Docs

You can also check this step-by-step tutorial that will walk you through the creation of a full-fledged dashboard with this library.

Contributing

Contributions are very welcome. Check out [CONTRIBUTING.md](CONTRIBUTING.md)

Run the Storybook

git clone https://www.github.com/rakannimer/react-google-charts
cd react-google-charts
yarn
yarn start:storybook


*Note that all licence references and agreements mentioned in the react-google-charts README section above are relevant to that project's source code only.