This is an automated email from the ASF dual-hosted git repository.
yongjiezhao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 6225c9a fix: replace absolute difference with difference in legacy
charts (#16931)
6225c9a is described below
commit 6225c9a4a30bb3028882c819b3a83c6ce481ed57
Author: Yongjie Zhao <[email protected]>
AuthorDate: Sat Oct 2 02:10:20 2021 +0100
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 c86acbb..0a5f63a 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.',
),
},