mirror of
https://github.com/apache/superset.git
synced 2026-05-31 05:09:20 +00:00
146 lines
4.1 KiB
TypeScript
146 lines
4.1 KiB
TypeScript
/**
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
import {
|
|
ControlPanelConfig,
|
|
ControlSubSectionHeader,
|
|
sections,
|
|
sharedControls,
|
|
} from '@superset-ui/chart-controls';
|
|
import { t } from '@apache-superset/core/translation';
|
|
import { GenericDataType } from '@apache-superset/core/common';
|
|
import {
|
|
legendSection,
|
|
showExtraControls,
|
|
tooltipTimeFormatControl,
|
|
tooltipValuesFormatControl,
|
|
} from '../controls';
|
|
|
|
const config: ControlPanelConfig = {
|
|
controlPanelSections: [
|
|
{
|
|
label: t('Query'),
|
|
expanded: true,
|
|
controlSetRows: [
|
|
[
|
|
{
|
|
name: 'start_time',
|
|
config: {
|
|
...sharedControls.entity,
|
|
label: t('Start Time'),
|
|
description: undefined,
|
|
allowedDataTypes: [GenericDataType.Temporal],
|
|
},
|
|
},
|
|
],
|
|
[
|
|
{
|
|
name: 'end_time',
|
|
config: {
|
|
...sharedControls.entity,
|
|
label: t('End Time'),
|
|
description: undefined,
|
|
allowedDataTypes: [GenericDataType.Temporal],
|
|
},
|
|
},
|
|
],
|
|
[
|
|
{
|
|
name: 'y_axis',
|
|
config: {
|
|
...sharedControls.x_axis,
|
|
label: t('Y-axis'),
|
|
description: t('Dimension to use on y-axis.'),
|
|
initialValue: () => undefined,
|
|
},
|
|
},
|
|
],
|
|
['series'],
|
|
[
|
|
{
|
|
name: 'subcategories',
|
|
config: {
|
|
type: 'CheckboxControl',
|
|
label: t('Subcategories'),
|
|
description: t(
|
|
'Divides each category into subcategories based on the values in ' +
|
|
'the dimension. It can be used to exclude intersections.',
|
|
),
|
|
renderTrigger: true,
|
|
default: false,
|
|
visibility: ({ controls }) => !!controls?.series?.value,
|
|
},
|
|
},
|
|
],
|
|
['tooltip_metrics'],
|
|
['tooltip_columns'],
|
|
['adhoc_filters'],
|
|
['order_by_cols'],
|
|
['row_limit'],
|
|
],
|
|
},
|
|
{
|
|
...sections.titleControls,
|
|
controlSetRows: sections.titleControls.controlSetRows.slice(0, -1),
|
|
},
|
|
{
|
|
label: t('Chart Options'),
|
|
expanded: true,
|
|
tabOverride: 'customize',
|
|
controlSetRows: [
|
|
['color_scheme'],
|
|
...legendSection,
|
|
['zoomable'],
|
|
[showExtraControls],
|
|
[
|
|
<ControlSubSectionHeader key="x-axis">
|
|
{t('X Axis')}
|
|
</ControlSubSectionHeader>,
|
|
],
|
|
[
|
|
{
|
|
name: 'x_axis_time_bounds',
|
|
config: {
|
|
type: 'TimeRangeControl',
|
|
label: t('Bounds'),
|
|
description: t(
|
|
'Bounds for the X-axis. Selected time merges with ' +
|
|
'min/max date of the data. When left empty, bounds ' +
|
|
'dynamically defined based on the min/max of the data.',
|
|
),
|
|
renderTrigger: true,
|
|
allowClear: true,
|
|
allowEmpty: [true, true],
|
|
},
|
|
},
|
|
],
|
|
['x_axis_time_format'],
|
|
[
|
|
<ControlSubSectionHeader key="tooltip">
|
|
{t('Tooltip')}
|
|
</ControlSubSectionHeader>,
|
|
],
|
|
[tooltipTimeFormatControl],
|
|
[tooltipValuesFormatControl],
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default config;
|