Marking distribution as is_timeseries=False
This commit is contained in:
parent
bca1e15e44
commit
483935cc12
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in New Issue