Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created January 6, 2020 23:15
Show Gist options
  • Save BetterProgramming/0e779a588a4aeac70f2df719503a4b83 to your computer and use it in GitHub Desktop.
Save BetterProgramming/0e779a588a4aeac70f2df719503a4b83 to your computer and use it in GitHub Desktop.
...
import {
AreaChart,
XAxis,
YAxis,
Tooltip,
Area,
} from "recharts";
...
<AreaChart data={dataArr} height={250} width={700}>
<XAxis dataKey={"date"} />
<YAxis orientation={"left"} />
...
</AreaChart>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment