可以使用一些帮助尝试使用 Victory 创建一个简单的折线图。
我正在尝试做的事情:
我基本上是在尝试创建一个显示过去 10 分钟随机数的折线图。我每 3 秒生成一个新的随机数,并将该随机数添加到折线图中。
所以 X 轴应该是从 0 分钟到 10 分钟,Y 轴应该是给定时间的实际 rand num。
我的主要问题是我对如何以 3 秒为间隔从 0 到 10 分钟创建 X 轴非常迷茫
到目前为止我所拥有的:
这是我到目前为止所做的代码沙箱,因此您可以尝试一下:https ://codesandbox.io/s/6wnzkz512n
主要Chart
成分:
import React from 'react'
import { VictoryChart, VictoryLine, VictoryAxis } from 'victory'
class Chart extends React.Component {
constructor() {
super()
this.state = {
data: []
}
}
// Add a new data point every 3 seconds
componentDidMount() {
this.getRandNum()
setInterval(this.getRandNum, 3000)
}
// get rand num from 1-5 along with current time,
// and add it to data. not sure if this is right approach
getRandNum = () => {
const newData = {
date: new Date(),
num: Math.floor(Math.random() * 5) + 1
}
this.setState({
data: [...this.state.data, newData]
})
}
render() {
return (
<VictoryChart width={600} height={470}>
<VictoryLine
style={{
data: { stroke: 'lime' }
}}
data={this.state.data}
x="date"
y="num"
/>
</VictoryChart>
)
}
}