Skip to content

Instantly share code, notes, and snippets.

@eggei
Last active August 27, 2020 18:51
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 eggei/fd444093581d65cac4e7196caac66584 to your computer and use it in GitHub Desktop.
Save eggei/fd444093581d65cac4e7196caac66584 to your computer and use it in GitHub Desktop.
react-vis-simple-line
type data = Array<{
x: number
y: number
}>
<XYPlot height={400} width={800}>
<VerticalGridLines />
<HorizontalGridLines />
<XAxis/>
<YAxis />
<LineSeries data={data} />
</XYPlot>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment