Marking distribution as is_timeseries=False

This commit is contained in:
Maxime 2015-09-08 21:01:30 +00:00
parent bca1e15e44
commit 483935cc12
1 changed files with 2 additions and 0 deletions

View File

@ -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):