diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts index d2414b9c978..bcb4dcc6720 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts @@ -71,18 +71,6 @@ const config: ControlPanelConfig = { expanded: true, controlSetRows: [ ['color_scheme', 'label_colors'], - [ - { - name: 'show_legend', - config: { - type: 'CheckboxControl', - label: t('Legend'), - renderTrigger: true, - default: false, - description: t('Whether to display the legend (toggles)'), - }, - }, - ], [ { name: 'link_length', @@ -107,6 +95,8 @@ const config: ControlPanelConfig = { default: '', }, }, + ], + [ { name: 'y_axis_label', config: { @@ -117,6 +107,18 @@ const config: ControlPanelConfig = { }, }, ], + [ + { + name: 'show_legend', + config: { + type: 'CheckboxControl', + label: t('Legend'), + renderTrigger: true, + default: false, + description: t('Whether to display the legend (toggles)'), + }, + }, + ], [ { name: 'normalized',