diff options
author | Arseniy Movshev <dodoradio@outlook.com> | 2023-07-20 16:43:50 +0100 |
---|---|---|
committer | dodoradio <dodoradio@outlook.com> | 2023-07-20 19:17:49 +0100 |
commit | f298c6bc220ea19a4bca9fdc4a44a7799d695b25 (patch) | |
tree | 0f685636570e4785912bb99b995f1eedf51693e0 /src/stepCounter | |
parent | a4275a238f2a913923ee5b09edecba9c89ee4df1 (diff) |
Use VerticalLabels in BarGraph
Currently the width of the labels isn't dynamic as it was before. This will need fixing.
Diffstat (limited to 'src/stepCounter')
-rw-r--r-- | src/stepCounter/StepCounterPreview.qml | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/stepCounter/StepCounterPreview.qml b/src/stepCounter/StepCounterPreview.qml index ed9a999..2a152f0 100644 --- a/src/stepCounter/StepCounterPreview.qml +++ b/src/stepCounter/StepCounterPreview.qml @@ -70,14 +70,6 @@ Column { labelsArr.push(weekday[currDate.getDay()]) } } - - //this code figures out graph scaling - var powTen = Math.floor(Math.log10(maxValue)) - divisionsInterval = Math.pow(10,powTen) - console.log(Math.floor(maxValue/divisionsInterval)) - maxValue = divisionsInterval*Math.floor(maxValue/divisionsInterval) + (divisionsInterval/5)*Math.ceil((maxValue%divisionsInterval)/(divisionsInterval/5)) - divisionsCount = Math.floor(maxValue/divisionsInterval) + 1 - console.log(maxValue,divisionsInterval,divisionsCount) dataLoadingDone() } indicatorLineHeight: loggerSettings.stepGoalEnabled ? loggerSettings.stepGoalTarget : 0 |