From 6225c9a4a30bb3028882c819b3a83c6ce481ed57 Mon Sep 17 00:00:00 2001 From: Yongjie Zhao Date: Sat, 2 Oct 2021 02:10:20 +0100 Subject: [PATCH] fix: replace absolute difference with difference in legacy charts (#16931) --- superset-frontend/src/explore/controlPanels/sections.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/superset-frontend/src/explore/controlPanels/sections.tsx b/superset-frontend/src/explore/controlPanels/sections.tsx index c86acbb6e2..0a5f63a1c3 100644 --- a/superset-frontend/src/explore/controlPanels/sections.tsx +++ b/superset-frontend/src/explore/controlPanels/sections.tsx @@ -233,13 +233,13 @@ export const NVD3TimeSeries: ControlPanelSectionConfig[] = [ default: 'values', choices: [ ['values', 'Actual values'], - ['absolute', 'Absolute difference'], + ['absolute', 'Difference'], ['percentage', 'Percentage change'], ['ratio', 'Ratio'], ], description: t( 'How to display time shifts: as individual lines; as the ' + - 'absolute difference between the main time series and each time shift; ' + + 'difference between the main time series and each time shift; ' + 'as the percentage change; or as the ratio between series and time shifts.', ), },