diff --git a/panoramix/viz.py b/panoramix/viz.py index 45970341c5150..efcf51b460c02 100644 --- a/panoramix/viz.py +++ b/panoramix/viz.py @@ -750,50 +750,17 @@ def get_json_data(self): class NVD3TimeSeriesBarViz(NVD3TimeSeriesViz): viz_type = "bar" verbose_name = "Time Series - Bar Chart" - fieldsets = ( - { - 'label': None, - 'fields': ( - 'granularity', ('since', 'until'), - 'metrics', - 'groupby', 'limit', - ('rolling_type', 'rolling_periods'), - 'show_legend', - ) - },) class NVD3CompareTimeSeriesViz(NVD3TimeSeriesViz): viz_type = 'compare' verbose_name = "Time Series - Percent Change" - fieldsets = ( - { - 'label': None, - 'fields': ( - 'granularity', ('since', 'until'), - 'metrics', - 'groupby', 'limit', - ('rolling_type', 'rolling_periods'), - 'show_legend', - ) - },) class NVD3TimeSeriesStackedViz(NVD3TimeSeriesViz): viz_type = "area" verbose_name = "Time Series - Stacked" sort_series = True - fieldsets = ( - { - 'label': None, - 'fields': ( - 'granularity', ('since', 'until'), - 'metrics', - 'groupby', 'limit', - ('rolling_type', 'rolling_periods'), - ('rich_tooltip', 'show_legend'), - ) - },) class DistributionPieViz(NVD3Viz):