diff --git a/panoramix/viz.py b/panoramix/viz.py index e9584a81d55fd..631578fc5f2f3 100644 --- a/panoramix/viz.py +++ b/panoramix/viz.py @@ -543,6 +543,12 @@ def get_json_data(self): class DistributionBarViz(DistributionPieViz): viz_type = "dist_bar" verbose_name = "Distribution - Bar Chart" + form_fields = [ + 'viz_type', 'metrics', 'groupby', + ('since', 'until'), + 'limit', + ('show_legend', None), + ] def get_df(self): df = super(DistributionPieViz, self).get_df()