diff --git a/core/core-frontend/src/views/chart/components/editor/drag-item/DimensionItem.vue b/core/core-frontend/src/views/chart/components/editor/drag-item/DimensionItem.vue index db0e4b9047..d8b7612099 100644 --- a/core/core-frontend/src/views/chart/components/editor/drag-item/DimensionItem.vue +++ b/core/core-frontend/src/views/chart/components/editor/drag-item/DimensionItem.vue @@ -171,7 +171,12 @@ const valueFormatter = () => { item.value.formatterType = props.type emit('valueFormatter', item.value) } - +const showCustomSort = item => { + if (props.chart.type === 'symbolic-map') { + return false + } + return !item.chartId && (item.deType === 0 || item.deType === 5) +} onMounted(() => { getItemTagType() }) @@ -300,7 +305,7 @@ onMounted(() => {