mirror of
https://github.com/apache/superset.git
synced 2026-07-19 05:05:39 +00:00
[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:
committed by
GitHub
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'),
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user