react-google-charts

react-google-charts React component

Usage no npm install needed!

<script type="module">
  import reactGoogleCharts from 'https://cdn.skypack.dev/react-google-charts';
</script>

README

React Google Charts

Logo

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

Contributing

Contributions are very welcome. Check out CONTRIBUTING.md

Run the Storybook

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