From 331ea452fa1186e096e3a905b2b729a599d07b42 Mon Sep 17 00:00:00 2001 From: Aslak Knutsen Date: Tue, 5 Mar 2013 02:09:16 +0100 Subject: Change Activity Graph from Protovis to d3 (#43) Fixes failing javascipt in Opera and Chrome resulting in no graph and no other javascript features. Changed to precalculate all days in the begin_date...end_date date range before matching email counts to ensure we have data points for all days in the range. --- hyperkitty/static/css/hyperkitty-overview.css | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'hyperkitty/static/css') diff --git a/hyperkitty/static/css/hyperkitty-overview.css b/hyperkitty/static/css/hyperkitty-overview.css index 458586b..cb489da 100644 --- a/hyperkitty/static/css/hyperkitty-overview.css +++ b/hyperkitty/static/css/hyperkitty-overview.css @@ -21,6 +21,16 @@ height: 330px; } +#fig .axis path, #fig .axis line { + fill: none; + stroke: #000; + shape-rendering: geometricPrecision; +} + +#fig .area { + fill: steelBlue; +} + #top-discussion, #discussion-by-topic, -- cgit