Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created January 6, 2020 23:08
Show Gist options
  • Save BetterProgramming/65499c50223548af7c38ea7b96956d5b to your computer and use it in GitHub Desktop.
Save BetterProgramming/65499c50223548af7c38ea7b96956d5b to your computer and use it in GitHub Desktop.
...
import { AreaChart, Area } from "recharts";
...
return (
<div style={styles.container}>
<AreaChart data={dataArr} height={250} width={700}>
<Area
dataKey="Total"
stroke="none"
fillOpacity={1}
fill="#f7931a"
/>
</AreaChart>
</div>
)
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment