You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2019/05/21 05:14:35 UTC

[incubator-superset] branch master updated: Boxplot should not require a datetime column (#5096)

This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 1ae000a  Boxplot should not require a datetime column (#5096)
1ae000a is described below

commit 1ae000a26220c024f3f904d9049cfcd4b1e461e7
Author: Axel Mathéi <ax...@gmail.com>
AuthorDate: Tue May 21 07:14:23 2019 +0200

    Boxplot should not require a datetime column (#5096)
    
    See https://github.com/apache/incubator-superset/issues/2222
---
 superset/viz.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset/viz.py b/superset/viz.py
index 9661e23..a9e3f93 100644
--- a/superset/viz.py
+++ b/superset/viz.py
@@ -853,7 +853,7 @@ class BoxPlotViz(NVD3Viz):
     viz_type = 'box_plot'
     verbose_name = _('Box Plot')
     sort_series = False
-    is_timeseries = True
+    is_timeseries = False
 
     def to_series(self, df, classed='', title_suffix=''):
         label_sep = ' - '