You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We recently added in code to switch over the Game Flag Submissions and Team Flag Submissions graphs over from grouping data by hours to grouping data by days automatically. When doing this I didn't take into account how slow/fast paced the game could be. The automatic switchover is after 7 days, and on one currently running competition the graphs now look as follows:
Instead of switching over automatically we basically need to add something similar to the following code
We need to figure out what a reasonable THRESHOLD is above (probably by manually testing different amounts of data).
Also we need to rename submitted_flags_per_hour and solved_challenges_per_hour since they aren't really by hour anymore, they are by the period passed into them.
The text was updated successfully, but these errors were encountered:
I've managed to fix this bug locally (by defining the dateTimeLabelFormats for xAxis), however, there is another problem (in master) that makes all hours show as 4AM (example). I'm at a loss as to how this happens but I will continue to look for what's causing this.
We recently added in code to switch over the Game Flag Submissions and Team Flag Submissions graphs over from grouping data by hours to grouping data by days automatically. When doing this I didn't take into account how slow/fast paced the game could be. The automatic switchover is after 7 days, and on one currently running competition the graphs now look as follows:
Instead of switching over automatically we basically need to add something similar to the following code
We need to figure out what a reasonable THRESHOLD is above (probably by manually testing different amounts of data).
Also we need to rename
submitted_flags_per_hour
andsolved_challenges_per_hour
since they aren't really by hour anymore, they are by the period passed into them.The text was updated successfully, but these errors were encountered: