diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx index 3c58e0aecff9..c22264e2d1e7 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx @@ -142,7 +142,7 @@ const config: ControlPanelConfig = { type: 'SelectControl', freeForm: true, clearable: true, - label: t('X AXIS TITLE MARGIN'), + label: t('X axis title margin'), renderTrigger: true, default: sections.TITLE_MARGIN_OPTIONS[1], choices: formatSelectOptions(sections.TITLE_MARGIN_OPTIONS), @@ -214,7 +214,7 @@ const config: ControlPanelConfig = { type: 'SelectControl', freeForm: true, clearable: true, - label: t('Y AXIS TITLE MARGIN'), + label: t('Y axis title margin'), renderTrigger: true, default: sections.TITLE_MARGIN_OPTIONS[1], choices: formatSelectOptions(sections.TITLE_MARGIN_OPTIONS), diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx index 9a26c3e8a645..894c6e51efda 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx @@ -81,7 +81,7 @@ function createAxisTitleControl(axis: 'x' | 'y'): ControlSetRow[] { type: 'SelectControl', freeForm: true, clearable: true, - label: t('AXIS TITLE MARGIN'), + label: t('Axis title margin'), renderTrigger: true, default: sections.TITLE_MARGIN_OPTIONS[0], choices: formatSelectOptions(sections.TITLE_MARGIN_OPTIONS), @@ -114,7 +114,7 @@ function createAxisTitleControl(axis: 'x' | 'y'): ControlSetRow[] { type: 'SelectControl', freeForm: true, clearable: true, - label: t('AXIS TITLE MARGIN'), + label: t('Axis title margin'), renderTrigger: true, default: sections.TITLE_MARGIN_OPTIONS[1], choices: formatSelectOptions(sections.TITLE_MARGIN_OPTIONS), @@ -132,7 +132,7 @@ function createAxisTitleControl(axis: 'x' | 'y'): ControlSetRow[] { type: 'SelectControl', freeForm: true, clearable: false, - label: t('AXIS TITLE POSITION'), + label: t('Axis title position'), renderTrigger: true, default: sections.TITLE_POSITION_OPTIONS[0][0], choices: sections.TITLE_POSITION_OPTIONS,