是否有React-native软件包用于绘制实时时间序列数据折线图?

我尝试使用react-native-svg-charts,react-native-highcharts,但没有帮助。我在绘制数据点,移动轴(根据时间)和标记轴时遇到麻烦。

     <YAxis
          data={data1}
          style={{ marginBottom: xAxisHeight }}
          contentInset={verticalContentInset}
          svg={axesSvg}
          numberOfTicks={ 5 }

      />
      <View style={{ flex: 1,marginLeft: 10 }}>
       <LineChart
          style={ { flex: 1 } }
           data={ data1 }
           yaccessor={({ item }) => item.value}
           xaccessor={({ item }) => item.date}
           contentInset={{ left: 10,right: 25 }}
           xScale={scale.scaleTime}
           numberOfTicks={10}
           svg={{
             stroke: "#F7941D",strokeWidth: 1.25
           }}

       >
       <Grid/>

       </LineChart>
       <XAxis
         data={data1}
         svg={{
             fill: 'black',fontSize: 8,fontWeight: 'bold',rotation: 20,originY: 30,y: 5,}}
         xaccessor={({ item }) => item.date}
         scale={scale.scaleTime}
         numberOfTicks={10}
         style={{ marginHorizontal: -15,height: 20 }}
         contentInset={{ left: 15,right: 25 }}
         formatLabel={(value) => dateFns.format(value,'hh:mm:ss')}
       />
       </View>
   `

我的数据是这样的: 1: {value: 119.6932,date: Tue Jan 14 2020 13:12:32 GMT-0500 (Eastern Standard Time)} 2: {value: 119.9372,date: Tue Jan 14 2020 13:12:32 GMT-0500 (Eastern Standard Time)} 3: {value: 120.2093,date: Tue Jan 14 2020 13:12:32 GMT-0500 (Eastern Standard Time)} 4: {value: 122.9826,date: Tue Jan 14 2020 13:12:32 GMT-0500 (Eastern Standard Time)} 5: {value: 114.2904,date: Tue Jan 14 2020 13:12:32 GMT-0500 (Eastern Standard Time)}

以上内容是使用react-native-svg-charts实现的,在这里我可以根据直播时间移动x轴(时间),但是不合适。 任何有良好格式建议的人吗?谢谢

why521jay 回答:是否有React-native软件包用于绘制实时时间序列数据折线图?

暂时没有好的解决方案,如果你有好的解决方案,请发邮件至:iooj@foxmail.com
本文链接:https://www.f2er.com/2769605.html

大家都在问