diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Histogram/controlPanel.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/Histogram/controlPanel.tsx index 59a7de2825c54..42a377288bd7e 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Histogram/controlPanel.tsx +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Histogram/controlPanel.tsx @@ -27,6 +27,7 @@ import { formatSelectOptionsForRange, dndGroupByControl, columnsByType, + sections, } from '@superset-ui/chart-controls'; import { showLegendControl, showValueControl } from '../controls'; @@ -104,35 +105,37 @@ const config: ControlPanelConfig = { ], ], }, + sections.titleControls, { label: t('Chart Options'), expanded: true, controlSetRows: [ + ['color_scheme'], [showValueControl], [showLegendControl], - [ - { - name: 'x_axis_title', - config: { - type: 'TextControl', - label: t('X Axis Title'), - renderTrigger: true, - default: '', - }, - }, - ], - [ - { - name: 'y_axis_title', - config: { - type: 'TextControl', - label: t('Y Axis Title'), - renderTrigger: true, - default: '', - }, - }, - ], + // [ + // { + // name: 'x_axis_title', + // config: { + // type: 'TextControl', + // label: t('X Axis Title'), + // renderTrigger: true, + // default: '', + // }, + // }, + // ], + // [ + // { + // name: 'y_axis_title', + // config: { + // type: 'TextControl', + // label: t('Y Axis Title'), + // renderTrigger: true, + // default: '', + // }, + // }, + // ], ], }, ],