aboutsummaryrefslogtreecommitdiff
path: root/src/stepCounter/StepsDetailPage.qml
diff options
context:
space:
mode:
authordodoradio <dodoradio@outlook.com>2023-07-21 15:54:21 +0100
committerdodoradio <dodoradio@outlook.com>2023-07-21 16:51:09 +0100
commit86ac8fec062c9dfb6d695ac5c82bb06241f0ab13 (patch)
treed3bf83d6f52c5f649fa3effb004ee04ba44bba11 /src/stepCounter/StepsDetailPage.qml
parentec655ab2d3a0c02af0a451e8862355ecd700671e (diff)
Steps: Use new bar graph interactions to open detail page at different dates
Diffstat (limited to '')
-rw-r--r--src/stepCounter/StepsDetailPage.qml14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/stepCounter/StepsDetailPage.qml b/src/stepCounter/StepsDetailPage.qml
index 9d141dd..978a411 100644
--- a/src/stepCounter/StepsDetailPage.qml
+++ b/src/stepCounter/StepsDetailPage.qml
@@ -24,6 +24,8 @@ import org.asteroid.sensorlogd 1.0
import "../graphs"
Item {
+ id: root
+ property date currentDay: new Date()
Flickable {
anchors.fill: parent
contentHeight: contentColumn.implicitHeight
@@ -33,13 +35,21 @@ Item {
Item { width: parent.width; height: parent.width*0.2}
+ Label {
+ anchors {
+ left: parent.left
+ margins: app.width*0.1
+ }
+ text: graph.startTime.toLocaleDateString()
+ }
+
StepsLineGraph {
id: graph
anchors.horizontalCenter: parent.horizontalCenter
width: parent.width*0.9
height: app.height*2/3
- startTime: new Date()
- endTime: new Date()
+ startTime: root.currentDay
+ endTime: root.currentDay
}
Row {
anchors.horizontalCenter: parent.horizontalCenter