From 59cabe7d8f5bde99e69a0c838bb04fc3f01cfd24 Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Fri, 6 Apr 2018 15:46:38 -0700 Subject: [PATCH] [explore] set control default for *showminmax = false (#4766) Let's make the defaults less crowded on the axes by not showing the min and max values on the axes (bounds) --- superset/assets/javascripts/explore/stores/controls.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/superset/assets/javascripts/explore/stores/controls.jsx b/superset/assets/javascripts/explore/stores/controls.jsx index 72baf1ff3..65dd2f64a 100644 --- a/superset/assets/javascripts/explore/stores/controls.jsx +++ b/superset/assets/javascripts/explore/stores/controls.jsx @@ -1399,7 +1399,7 @@ export const controls = { type: 'CheckboxControl', label: t('X bounds'), renderTrigger: true, - default: true, + default: false, description: t('Whether to display the min and max values of the X axis'), }, @@ -1407,7 +1407,7 @@ export const controls = { type: 'CheckboxControl', label: t('Y bounds'), renderTrigger: true, - default: true, + default: false, description: t('Whether to display the min and max values of the Y axis'), },