From 483935cc12a3cebc92f7d26c0e4d9ac5cb36b510 Mon Sep 17 00:00:00 2001 From: Maxime Date: Tue, 8 Sep 2015 21:01:30 +0000 Subject: [PATCH] Marking distribution as is_timeseries=False --- panoramix/viz.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/panoramix/viz.py b/panoramix/viz.py index dace3ebe2..71a7fa03e 100644 --- a/panoramix/viz.py +++ b/panoramix/viz.py @@ -356,6 +356,7 @@ class DistributionBarViz(HighchartsViz): def query_obj(self): d = super(DistributionBarViz, self).query_obj() d['granularity'] = "all" + d['is_timeseries'] = False return d def render(self): @@ -377,6 +378,7 @@ class DistributionPieViz(HighchartsViz): def query_obj(self): d = super(DistributionPieViz, self).query_obj() d['granularity'] = "all" + d['is_timeseries'] = False return d def render(self):