Created
July 24, 2020 20:26
-
-
Save kristw/506743c33f9f85dcdd85f2c51d84c282 to your computer and use it in GitHub Desktop.
blog example: recharts
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}> | |
<XAxis dataKey="name"/> | |
<YAxis/> | |
<CartesianGrid stroke="#eee" strokeDasharray="5 5"/> | |
<Line type="monotone" dataKey="uv" stroke="#8884d8" /> | |
<Line type="monotone" dataKey="pv" stroke="#82ca9d" /> | |
</LineChart> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment