zhaoyongjie commented on code in PR #21993: URL: https://github.com/apache/superset/pull/21993#discussion_r1032742538
########## superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx: ########## @@ -16,41 +16,47 @@ * specific language governing permissions and limitations * under the License. */ -import { ContributionType, hasGenericChartAxes, t } from '@superset-ui/core'; -import { ControlPanelSectionConfig } from '../types'; -import { emitFilterControl } from '../shared-controls'; +import { hasGenericChartAxes, t } from '@superset-ui/core'; +import { ControlPanelSectionConfig, ControlSetRow } from '../types'; +import { + contributionModeControl, + emitFilterControl, + xAxisSortControl, + xAxisSortAscControl, +} from '../shared-controls'; + +const controlsWithoutXAxis: ControlSetRow[] = [ + ['metrics'], + ['groupby'], + [contributionModeControl], + ['adhoc_filters'], + emitFilterControl, + ['limit'], + ['timeseries_limit_metric'], + ['order_desc'], + ['row_limit'], + ['truncate_metric'], + ['show_empty_columns'], +]; export const echartsTimeSeriesQuery: ControlPanelSectionConfig = { label: t('Query'), expanded: true, controlSetRows: [ [hasGenericChartAxes ? 'x_axis' : null], [hasGenericChartAxes ? 'time_grain_sqla' : null], - ['metrics'], - ['groupby'], - [ - { - name: 'contributionMode', - config: { - type: 'SelectControl', - label: t('Contribution Mode'), - default: null, - choices: [ - [null, t('None')], - [ContributionType.Row, t('Row')], - [ContributionType.Column, t('Series')], - ], - description: t('Calculate contribution per series or row'), - }, Review Comment: move `contributionMode` into CustomControls.ts -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For additional commands, e-mail: notifications-h...@superset.apache.org