Skip to content

Instantly share code, notes, and snippets.

@kristw
Created July 24, 2020 20:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kristw/506743c33f9f85dcdd85f2c51d84c282 to your computer and use it in GitHub Desktop.
Save kristw/506743c33f9f85dcdd85f2c51d84c282 to your computer and use it in GitHub Desktop.
blog example: recharts
<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