Welcome back, Allie!

You have 12 new messages and 7 new notifications.
// date range picker $(function() { $('input[name="daterange"]').daterangepicker({ opens: 'left' }, function(start, end, label) { console.log("A new date selection was made: " + start.format('YYYY-MM-DD') + ' to ' + end.format('YYYY-MM-DD')); }); })
Heart rate
104 bpm
Blood
112/90 mm/Hg
Water
4 Litres
Glucose
98 mg/dl
Cholesterol
94 mg/dl

Your yesterday activity

Don't stop and improve your activity
900 kcal
Burned calories
80:20:09 min
Training
11:21:10 min
On legs
12,900
Steps
12 km
Distance
18
Floors
Todays Plan
Meditation
6:00 to 7:00am at. Home
Running
7:00 to 8:00am at. Arrowhead Golf
Cycling
8:00 to 8:30am at. Arrowhead Golf
Swimming
4:00 to 5:30pm at. Arrowhead Golf
Running
315 Hours
Cycling
245 Hours
Yoga
45 Session
Running
Cycling
Yoga
JanJanFebFebMarchMarchAprAprMayMayJunJunJulyJulyAugAugSeptSeptOctOctNovNovDecDec100100808060604040202000
The quality of your sleep is definitely weak.
Correct it tonight. View more
Your energy management is too weak.
inprove food quality. View more
Maps Route
nellie maxwell
nellie.maxwell@gamil.com
2.7 miles Late Evening Bike Ride
Feb 11, 2021 9:10PM
7 min
Duration
11:38km/h
Avg. Speed
20:45km/h
Max. Speed
980kcal
Calories
12m
Min. Latitude
108m
Max. Latitude
$(function() { "use strict"; // Workout Statistic var options = { series: [{ name: "Running", data: [45, 52, 38, 24, 33, 26, 21, 20, 6, 8, 15, 10] }, { name: "Cycling", data: [87, 57, 74, 99, 75, 38, 62, 47, 82, 56, 45, 47] }, { name: 'Yoga', data: [35, 41, 62, 42, 13, 18, 29, 37, 36, 51, 32, 35] }], chart: { height: 345, type: 'line', // line, bar, area toolbar: { show: false, }, zoom: { enabled: false }, }, colors: ['var(--chart-color1)', 'var(--chart-color5)', 'var(--chart-color2)'], dataLabels: { enabled: false }, stroke: { width: [2, 2, 2], curve: 'smooth', // straight, smooth dashArray: [0, 8, 5] }, legend: { tooltipHoverFormatter: function(val, opts) { return val + ' - ' + opts.w.globals.series[opts.seriesIndex][opts.dataPointIndex] + '' } }, markers: { size: 0, hover: { sizeOffset: 6 } }, xaxis: { categories: ['Jan', 'Feb', 'March', 'Apr', 'May', 'Jun', 'July', 'Aug', 'Sept', 'Oct', 'Nov', 'Dec'], }, tooltip: { y: [{ title: { formatter: function(val) { return val + " (Hours)" } } }, { title: { formatter: function(val) { return val + " (Hours)" } } }, { title: { formatter: function(val) { return val + " (Session)" } } }] }, }; var chart = new ApexCharts(document.querySelector("#apex-WorkoutStatistic"), options); chart.render(); // Sleep analysis var options = { series: [{ name: 'Current Week', data: [8.5, 7, 6, 7, 6.5, 6, 7] }, { name: 'Last Week', data: [7, 6.5, 5, 7.5, 8, 9, 8] }], chart: { height: 120, type: 'area', toolbar: { show: false, }, zoom: { enabled: false }, sparkline: { enabled: true, }, }, tooltip: { y: [{ title: { formatter: function(val) { return val + " Hours-" } } }, { title: { formatter: function(val) { return val + " Hours-" } } }] }, fill: { type: "gradient", gradient: { gradientToColors: ['var(--chart-color1)', 'var(--chart-color5)'], shadeIntensity: 4, opacityFrom: 0.5, opacityTo: 0.1, stops: [0, 100] }, }, colors: ['var(--chart-color1)', 'var(--chart-color5)'], stroke: { curve: 'smooth', width: 1 }, xaxis: { categories: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"] } }; var chart = new ApexCharts(document.querySelector("#apex-Sleepanalysis"), options); chart.render(); // Energy balance var options = { series: [{ name: "Low", data: [ [21.7, 3], [23.6, 3.5], [24.6, 3], [29.9, 3], [21.7, 20], [23, 2], [10.9, 3], [28, 4], [27.1, 0.3], [16.4, 4], [13.6, 0], [19, 5], [22.4, 3], [24.5, 3], [32.6, 3], [27.1, 4], [29.6, 6], [31.6, 8], [21.6, 5], [20.9, 4], [22.4, 0], [32.6, 10.3], [29.7, 20.8], [24.5, 0.8], [21.4, 0], [21.7, 6.9], [28.6, 7.7], [15.4, 0], [18.1, 0], [33.4, 0], [16.4, 0] ] }, { name: "High", data: [ [36.4, 13.4], [1.7, 11], [5.4, 8], [9, 17], [1.9, 4], [3.6, 12.2], [1.9, 14.4], [1.9, 9], [1.9, 13.2], [1.4, 7], [6.4, 8.8], [3.6, 4.3], [1.6, 10], [9.9, 2], [7.1, 15], [1.4, 0], [3.6, 13.7], [1.9, 15.2], [6.4, 16.5], [0.9, 10], [4.5, 17.1], [10.9, 10], [0.1, 14.7], [9, 10], [12.7, 11.8], [2.1, 10], [2.5, 10], [27.1, 10], [2.9, 11.5], [7.1, 10.8], [2.1, 12] ] }], chart: { height: 120, type: 'scatter', toolbar: { show: false, }, sparkline: { enabled: true, } }, colors: ['var(--chart-color2)', 'var(--chart-color5)'], xaxis: { tickAmount: 10, labels: { formatter: function(val) { return parseFloat(val).toFixed(1) } } }, yaxis: { tickAmount: 0 }, markers: { size: [3, 3] } }; var chart = new ApexCharts(document.querySelector("#apex-Energybalance"), options); chart.render(); });