我正在使用动画ChartView
在QtQuick应用程序中显示直方图。
SeriesAnimation
在应用程序启动时执行一次。如何在以后重新启动动画?
import QtQuick 2.7
import QtCharts 2.1
...
ChartView {
id: liveViewHistogramChart
title: "Histogram"
anchors.fill: parent
animationOptions: ChartView.SeriesAnimation
theme: ChartView.ChartThemeLight
ValueAxis {
id: yAxis
min: 0
max: 1
}
ValueAxis {
id: xAxis
min: 0
max: 20
}
BarSeries {
id: mySeries
BarSet { color: "blue"; values: [0.1, 0.2, 0.25, 0.18, 0.12, 0.05, 0.04, 0.03, 0.035, 0.1, 0.12, 0.18, 0.1, 0.02, 0.25, 0.83, 0.45, 0.27, 0.1, 0.02] }
axisX: xAxis
axisY: yAxis
}
}