aboutsummaryrefslogtreecommitdiff
path: root/src/graphs
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphs')
-rw-r--r--src/graphs/HrGraph.qml4
-rw-r--r--src/graphs/StepsLineGraph.qml4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/graphs/HrGraph.qml b/src/graphs/HrGraph.qml
index a3627af..40bd962 100644
--- a/src/graphs/HrGraph.qml
+++ b/src/graphs/HrGraph.qml
@@ -33,7 +33,9 @@ Item {
Component.onCompleted: {
hrGraph.loadGraphData(hrDataLoader.getDataFromTo(startTime,endTime))
}
- HrDataLoader { id: hrDataLoader }
+ HrDataLoader { id: hrDataLoader
+ onDataChanged: hrGraph.loadGraphData(getDataFromTo(startTime,endTime))
+ }
VerticalLabels { // labels column
id: markerParent
width: parent.width/8
diff --git a/src/graphs/StepsLineGraph.qml b/src/graphs/StepsLineGraph.qml
index c654901..ddfcf5f 100644
--- a/src/graphs/StepsLineGraph.qml
+++ b/src/graphs/StepsLineGraph.qml
@@ -33,7 +33,9 @@ Item {
Component.onCompleted: {
stepsGraph.loadGraphData(stepsDataLoader.getDataFromTo(startTime,endTime))
}
- StepsDataLoader { id: stepsDataLoader }
+ StepsDataLoader { id: stepsDataLoader
+ onDataChanged: stepsGraph.loadGraphData(getDataFromTo(startTime,endTime))
+ }
VerticalLabels { // labels column
id: markerParent
width: parent.width/8