Skip to content

Instantly share code, notes, and snippets.

@eggei
Last active August 5, 2020 02:24
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/ae1302cbe76fe8fb5fd3d5dee10c677c to your computer and use it in GitHub Desktop.
Save eggei/ae1302cbe76fe8fb5fd3d5dee10c677c to your computer and use it in GitHub Desktop.
victory-simple-line
type data = Array<{
x: number
y: number
}>
<VictoryChart
theme={VictoryTheme.material}
>
<VictoryLine
data={data}
style={{
data: { stroke: "#c43a31" },
parent: { border: "1px solid #ccc"}
}}
/>
</VictoryChart>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment