Created
June 13, 2020 17:33
-
-
Save gaurav5430/1a2d43c5d26c37feac29c0c68b868a3d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<LineChart | |
width={500} | |
height={300} | |
data={data} | |
margin={{ | |
top: 5, right: 30, left: 20, bottom: 5, | |
}} | |
> | |
<CartesianGrid strokeDasharray="3 3" /> | |
<XAxis dataKey="name" /> | |
<YAxis /> | |
<Tooltip /> | |
<Legend /> | |
<Line type="monotone" dataKey="pv" stroke="#8884d8" activeDot={{ r: 8 }} /> | |
<Line type="monotone" dataKey="uv" stroke="#82ca9d" /> | |
</LineChart> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment