Created
August 5, 2020 02:41
-
-
Save eggei/c54c59db22acebdb588aca0572a9d3ea to your computer and use it in GitHub Desktop.
nivo-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<{ | |
id: string | |
data: Array<{ | |
x: string | |
y: string | |
}> | |
}> |
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
<Line | |
width={900} | |
height={400} | |
margin={{ top: 20, right: 20, bottom: 60, left: 80 }} | |
data={data} | |
xScale={{ | |
type: 'linear', | |
min: 0, | |
max: 'auto', | |
}} | |
axisLeft={{ | |
legend: 'linear scale', | |
legendOffset: 12, | |
}} | |
axisBottom={{ | |
legend: 'linear scale', | |
legendOffset: -12, | |
}} | |
animate | |
enableSlices="x" | |
curve="monotoneX" | |
/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment