Skip to content

Instantly share code, notes, and snippets.

@eggei
Last active August 5, 2020 02:24
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