Skip to content

Instantly share code, notes, and snippets.

@eggei
Last active August 27, 2020 20:20
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/8553e69f20e3d03d3cbff82140c2b5b6 to your computer and use it in GitHub Desktop.
Save eggei/8553e69f20e3d03d3cbff82140c2b5b6 to your computer and use it in GitHub Desktop.
viser-simple-line
type data = Array<{
year: string
value: number
}>
<Chart height={400} data={data}>
<Axis />
<Line position="year*value" />
<Point position="year*value" shape="circle"/>
</Chart>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment