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 cc56809e8b..f9be2dd653 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 @@ -195,7 +195,7 @@ const showCustomSort = item => { const showSort = () => { const { type: chartType } = props.chart const { type: propType } = props - const notShowSort = ['word-cloud', 'stock-line'].includes(chartType) + const notShowSort = ['word-cloud', 'stock-line', 'treemap'].includes(chartType) if (notShowSort || propType === 'extColor') { return false } diff --git a/core/core-frontend/src/views/chart/components/editor/drag-item/QuotaItem.vue b/core/core-frontend/src/views/chart/components/editor/drag-item/QuotaItem.vue index ca38eb7e45..5575601869 100644 --- a/core/core-frontend/src/views/chart/components/editor/drag-item/QuotaItem.vue +++ b/core/core-frontend/src/views/chart/components/editor/drag-item/QuotaItem.vue @@ -320,7 +320,9 @@ const showSort = computed(() => { props.type !== 'extLabel' && props.type !== 'extTooltip' && props.type !== 'extBubble' && - !['indicator', 'liquid', 'gauge', 'word-cloud', 'stock-line'].includes(chart.value.type) && + !['indicator', 'liquid', 'gauge', 'word-cloud', 'stock-line', 'treemap'].includes( + chart.value.type + ) && !chart.value.type.includes('chart-mix') ) })