Need explanation of the colors on the timeline when zoomed out #466
-
According to another maybe related issue (#465) - I wondered, how exactly the order logic of the colors in the timeline is. When you zoom out at some point you get a more graphical representation of the amount of tags (and their assigned color) used, if I understand it correct. What still is not clear to me in this representation is:
If there is too much time: Maybe the docs could be extended to explain this as well? (; |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
In the week/month/year statistics shown in the timeline, each color represents a tag, and they are simply sorted by total duration. timetagger/timetagger/app/front.py Lines 2534 to 2536 in 3a381b0
It is an indication of how much time was spent compared to the total time in that period. I had to look in the source code to see how its actually implemented. It is not a linear relation, because then it'd be just a thin bar most of the time. |
Beta Was this translation helpful? Give feedback.
In the week/month/year statistics shown in the timeline, each color represents a tag, and they are simply sorted by total duration.
timetagger/timetagger/app/front.py
Lines 2534 to 2536 in 3a381b0
It is an indication of how much time was spent compared to the total time in that period. I had to look in the source code to see how its actually implemented. It is not a linear relation, because then it'd be just a thin bar most of the time.