mirror of
https://github.com/apache/superset.git
synced 2026-07-24 23:56:22 +00:00
feat: Adds the ECharts Histogram chart (#28652)
This commit is contained in:
committed by
GitHub
parent
bc9eab9902
commit
896fe854dc
@@ -37,6 +37,7 @@ import { DndControlProps } from './types';
|
||||
export type DndColumnSelectProps = DndControlProps<QueryFormColumn> & {
|
||||
options: ColumnMeta[];
|
||||
isTemporal?: boolean;
|
||||
disabledTabs?: Set<string>;
|
||||
};
|
||||
|
||||
function DndColumnSelect(props: DndColumnSelectProps) {
|
||||
@@ -50,6 +51,7 @@ function DndColumnSelect(props: DndColumnSelectProps) {
|
||||
name,
|
||||
label,
|
||||
isTemporal,
|
||||
disabledTabs,
|
||||
} = props;
|
||||
const [newColumnPopoverVisible, setNewColumnPopoverVisible] = useState(false);
|
||||
|
||||
@@ -121,6 +123,7 @@ function DndColumnSelect(props: DndColumnSelectProps) {
|
||||
}}
|
||||
editedColumn={column}
|
||||
isTemporal={isTemporal}
|
||||
disabledTabs={disabledTabs}
|
||||
>
|
||||
<OptionWrapper
|
||||
key={idx}
|
||||
|
||||
Reference in New Issue
Block a user