From f298c6bc220ea19a4bca9fdc4a44a7799d695b25 Mon Sep 17 00:00:00 2001 From: Arseniy Movshev Date: Thu, 20 Jul 2023 16:43:50 +0100 Subject: Use VerticalLabels in BarGraph Currently the width of the labels isn't dynamic as it was before. This will need fixing. --- src/stepCounter/StepCounterPreview.qml | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/stepCounter/StepCounterPreview.qml') 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 -- cgit v1.2.3-54-g00ecf