Last active
August 5, 2020 02:24
-
-
Save eggei/ae1302cbe76fe8fb5fd3d5dee10c677c to your computer and use it in GitHub Desktop.
victory-simple-line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type data = Array<{ | |
x: number | |
y: number | |
}> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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