From 2dfd08fdb3ef087ee3d3b7e290d74c24899a463b Mon Sep 17 00:00:00 2001 From: yousoph Date: Thu, 16 Jul 2026 10:58:43 -0700 Subject: [PATCH] fix(plugin-chart-echarts): clarify Tooltip sort by metric description for stacked charts (#42106) Co-authored-by: Claude Opus 4.8 --- superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx index b6bbfddb53f..c0aa4f4f308 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx +++ b/superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx @@ -279,7 +279,7 @@ const tooltipSortByMetricControl: ControlSetItem = { renderTrigger: true, default: false, description: t( - 'Whether to sort tooltip by the selected metric in descending order.', + 'Whether to sort tooltip by the selected metric in descending order. On stacked charts, values are shown in ascending order.', ), visibility: ({ controls }: ControlPanelsContainerProps) => Boolean(controls?.rich_tooltip?.value),