我可以用趋势线更改“大数”中的大数吗,就像在“大数”中指代SUM

时间:2019-04-19 16:13:24

标签: python-3.x superset apache-superset

我需要使用趋势线更改图表大号中的值,该趋势线指的是趋势线中的最后一个值,其总和类似于图表大号中的值。 我该如何更改代码 类BigNumberViz(BaseViz):

"""Put emphasis on a single metric with this big number viz"""

viz_type = 'big_number'
verbose_name = _('Big Number with Trendline')
credits = 'a <a href="https://github.com/airbnb/superset">Superset</a> original'
is_timeseries = True

def query_obj(self):
    d = super(BigNumberViz, self).query_obj()
    metric = self.form_data.get('metric')
    if not metric:
        raise Exception(_('Pick a metric!'))
    d['metrics'] = [self.form_data.get('metric')]
    self.form_data['metric'] = metric
    return d

enter image description here

0 个答案:

没有答案