Recharts — Scatter and Pie Charts

John Au-Yeung
3 min readJan 7, 2021
Photo by Chris Liverani on Unsplash

We can add charts easily to a React app with Recharts.

In this article, we’ll look at how to use it.

Scatter Chart

We can add a scatter chart with the ScatterChart component.

For example, we can write:

import React from "react";
import {
ScatterChart,
Scatter,
XAxis,
YAxis…

--

--