Analytics & Statistics Tracker

Could you guys help me create a sample version of this Lifestyle & Impact Tracker?



I want it to work like in the images, where each category (Energy, Waste, Water, and Personal Goals) has rating circles from 1 to 10. When I press a circle, it should automatically add up the points and show the total in the Analytics section (for example: Energy – 7, Waste – 9, Water – 12, Goals – 14).

What kind of this tracker

The tracker serves as a record of how often or on which days you complete certain tasks or activities(given by the caption above). When you circle a specific date, the corresponding feedback will appear in the analytics section. The numbers will become visible once the action has been completed.

For the simplest record keeping, add a separate TinyDB instance for each task or activity, changing the NameSpace of each to match the task or activity. Use the date as the tag, formatted in a consistent format using a Clock block. (I like yyyyMMdd because it sorts well.)
Use the count (default 0) of that activity on that date as the value for that tag.

This gives you direct update and read access to each activity of each date.

Use a couple of Date Pickers to set date ranges if you want to set date ranges.

The Clock component has blocks that help you enumerate the dates between start and end dates.

1 Like

Could you please make a sample project of this please