mirror of
https://github.com/apache/superset.git
synced 2026-05-12 19:35:17 +00:00
New "Time Series - Table" visualization (#3543)
* [WiP] adding a new "Time Series - Table" viz * Adding drag-n-drop to collection * Using keys in arrays * tests
This commit is contained in:
committed by
GitHub
parent
645de384e3
commit
bb0f69d074
@@ -5,6 +5,7 @@ import { ALL_COLOR_SCHEMES, spectrums } from '../../modules/colors';
|
||||
import MetricOption from '../../components/MetricOption';
|
||||
import ColumnOption from '../../components/ColumnOption';
|
||||
import { t } from '../../locales';
|
||||
import controlMap from '../components/controls';
|
||||
|
||||
const D3_FORMAT_DOCS = 'D3 format syntax: https://github.com/d3/d3-format';
|
||||
|
||||
@@ -1410,5 +1411,12 @@ export const controls = {
|
||||
default: 4,
|
||||
description: 'Number of decimal places with which to display lift values',
|
||||
},
|
||||
column_collection: {
|
||||
type: 'CollectionControl',
|
||||
label: t('Time Series Columns'),
|
||||
validators: [v.nonEmpty],
|
||||
control: controlMap.TimeSeriesColumnControl,
|
||||
},
|
||||
|
||||
};
|
||||
export default controls;
|
||||
|
||||
Reference in New Issue
Block a user