[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:
parent
92230b8535
commit
59cabe7d8f
|
|
@ -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'),
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue