diff options
author | Pierre-Yves Chibon <pingou@pingoured.fr> | 2012-05-18 08:41:54 +0200 |
---|---|---|
committer | Pierre-Yves Chibon <pingou@pingoured.fr> | 2012-05-18 08:41:54 +0200 |
commit | 034c0c31921e17e2f85d669479196354507dd6f1 (patch) | |
tree | b38fd6187b88d8bd650f702aa059ffb2a050bf90 | |
parent | 927e8e6eca2d80119b46b17332de7d4ba5d3afed (diff) | |
download | hyperkitty-034c0c31921e17e2f85d669479196354507dd6f1.tar.gz hyperkitty-034c0c31921e17e2f85d669479196354507dd6f1.tar.xz hyperkitty-034c0c31921e17e2f85d669479196354507dd6f1.zip |
Little fix the 30 last days overview graph
-rw-r--r-- | templates/recent_activities.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/recent_activities.html b/templates/recent_activities.html index 8a936d6..6c89719 100644 --- a/templates/recent_activities.html +++ b/templates/recent_activities.html @@ -23,7 +23,7 @@ var dates = ["{{dates_string|join:'","'}}"]; var data = {{evolution}}, w = 500, h = 300, - x = pv.Scale.ordinal(pv.range(30)).splitBanded(0, w, 4/5), + x = pv.Scale.ordinal(pv.range(32)).splitBanded(0, w, 4/5), y = pv.Scale.linear(0, {{evolution|length}}).range(0, h); var vis = new pv.Panel() |