migrating unique controls (#9374)

This commit is contained in:
Evan Rusackas 2020-03-26 15:15:47 -07:00 committed by GitHub
parent cfa786850f
commit b12188ec80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 19 deletions

View File

@ -1121,7 +1121,6 @@ Note the `y_axis_format` is defined under various section for some charts.
| `grid_size` | _N/A_ | |
| `horizon_color_scale` | _N/A_ | |
| `import_time` | _N/A_ | |
| `include_series` | _N/A_ | |
| `instant_filtering` | _N/A_ | |
| `js_agg_function` | _N/A_ | |
| `js_columns` | _N/A_ | |
@ -1188,7 +1187,6 @@ Note the `y_axis_format` is defined under various section for some charts.
| `show_brush` | _N/A_ | |
| `show_bubbles` | _N/A_ | |
| `show_controls` | _N/A_ | |
| `show_datatable` | _N/A_ | |
| `show_druid_time_granularity` | _N/A_ | |
| `show_druid_time_origin` | _N/A_ | |
| `show_labels` | _N/A_ | |

View File

@ -35,7 +35,28 @@ export default {
label: t('Options'),
expanded: true,
controlSetRows: [
['show_datatable', 'include_series'],
[
{
name: 'show_datatable',
config: {
type: 'CheckboxControl',
label: t('Data Table'),
default: false,
renderTrigger: true,
description: t('Whether to display the interactive data table'),
},
},
{
name: 'include_series',
config: {
type: 'CheckboxControl',
label: t('Include Series'),
renderTrigger: true,
default: false,
description: t('Include series name as an axis'),
},
},
],
['linear_color_scheme'],
],
},

View File

@ -464,14 +464,6 @@ export const controls = {
),
},
include_series: {
type: 'CheckboxControl',
label: t('Include Series'),
renderTrigger: true,
default: false,
description: t('Include series name as an axis'),
},
secondary_metric: {
...metric,
label: t('Color Metric'),
@ -1364,14 +1356,6 @@ export const controls = {
description: t('Check to include Time Origin dropdown'),
},
show_datatable: {
type: 'CheckboxControl',
label: t('Data Table'),
default: false,
renderTrigger: true,
description: t('Whether to display the interactive data table'),
},
table_filter: {
type: 'CheckboxControl',
label: t('Emit Filter Events'),