[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)
This commit is contained in:
Maxime Beauchemin
2018-04-06 15:46:38 -07:00
committed by GitHub
parent 92230b8535
commit 59cabe7d8f

View File

@@ -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'),
},