From 51e9cb3d3e3f1713461b1b66f64c160e46decda0 Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Wed, 6 Jan 2016 14:21:03 -0800 Subject: [PATCH] Making all nvd3 timeseries have the full fieldset --- panoramix/viz.py | 33 --------------------------------- 1 file changed, 33 deletions(-) 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):