可以使用第三方图表库或者自定义组件来实现实时更新的数据图表。参见:https://developer.huawei.com/consumer/cn/doc/harmonyos-guides...@Entry @Component struct LiveChartAbility { @State private dataPoints: number[] = [10, 20, 30, 40, 50]; build() { Column() { LineChart(this.dataPoints) .width(300) .height(200); Button('Add Data Point') .onClick(() => { const newDataPoint = this.dataPoints[this.dataPoints.length - 1] + 10; this.dataPoints = [...this.dataPoints, newDataPoint]; }); } } }本文参与了 【 HarmonyOS NEXT 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。
可以使用第三方图表库或者自定义组件来实现实时更新的数据图表。
参见:https://developer.huawei.com/consumer/cn/doc/harmonyos-guides...
本文参与了 【 HarmonyOS NEXT 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。