mirror of
https://github.com/IonicaBizau/git-stats.git
synced 2025-01-03 10:22:11 +01:00
Different algorithm to normalize the graph data.
This commit is contained in:
parent
093ce0d9ce
commit
26e1494b48
1 changed files with 2 additions and 2 deletions
|
@ -253,13 +253,13 @@ GitStats.calendar = function (data, callback) {
|
|||
}
|
||||
});
|
||||
|
||||
levels = Math.ceil(cal.max / (LEVELS.length * 3));
|
||||
levels = cal.max / (LEVELS.length * 2);
|
||||
days.forEach(function (c) {
|
||||
cDay = graph[c];
|
||||
cal.days[c] = {
|
||||
c: cDay.c
|
||||
, level: !levels
|
||||
? 0 : (cLevel = Math.floor(cDay.c / levels )) >= 5
|
||||
? 0 : (cLevel = Math.round(cDay.c / levels)) >= 4
|
||||
? 4 : !cLevel && cDay.c > 0 ? 1 : cLevel
|
||||
};
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue