feat(图表): 去除组合图的指标排序选项

#15440
This commit is contained in:
ulleo
2025-04-03 15:57:11 +08:00
committed by xuwei-fit2cloud
parent 12a33e7220
commit c8b8f15d47

View File

@@ -320,9 +320,8 @@ const showSort = computed(() => {
props.type !== 'extLabel' &&
props.type !== 'extTooltip' &&
props.type !== 'extBubble' &&
!['chart-mix', 'indicator', 'liquid', 'gauge', 'word-cloud', 'stock-line'].includes(
chart.value.type
)
!['indicator', 'liquid', 'gauge', 'word-cloud', 'stock-line'].includes(chart.value.type) &&
!chart.value.type.includes('chart-mix')
)
})