-
Notifications
You must be signed in to change notification settings - Fork 14.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Rename legacy line and area charts #28113
fix: Rename legacy line and area charts #28113
Conversation
98950ba
to
5c781ea
Compare
/testenv up |
@john-bodley Ephemeral environment spinning up at http://18.237.90.157:8080. Credentials are |
5c781ea
to
f2372ad
Compare
f2372ad
to
c18a5ac
Compare
I think you can consider this as a fix. |
c18a5ac
to
b5f18e3
Compare
b5f18e3
to
ac19db4
Compare
Ruh Roh. |
ac19db4
to
1aa4bb7
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #28113 +/- ##
==========================================
+ Coverage 60.48% 70.04% +9.55%
==========================================
Files 1931 1933 +2
Lines 76236 76491 +255
Branches 8568 8566 -2
==========================================
+ Hits 46114 53578 +7464
+ Misses 28017 20809 -7208
+ Partials 2105 2104 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@rusackas as a code owner would you mind reviewing this change? |
Ephemeral environment shutdown and build artifacts deleted. |
SUMMARY
Prior to the enablement of the generic chart x-axis, the relevant ECharts charts included the "Time-series" prefix whereas several of the deprecated NVD3 charts didn't:
After the enablement the "Time-series" prefix was correctly dropped from the ECharts charts (to reflect their more general form),
however this resulted in a somewhat of a convoluted UX, i.e., the legacy NVD3 charts only work when the x-axis is a time-series (temporal) and thus I thought the names should be updated to reflect this.
This PR renames the following NVD3 chart types:
It's worth noting that the the legacy NVD3 temporal bar chart was already named appropriately given it needed to distinguish itself from the legacy NVD3 non-temporal bar chart.
Finally I haven't changed any of the translations, but the keys have been updated so translations will still exist even though the don't include the
Time-series
prefix. I looked into updating these via Google Translate, but I'm not entirely sure how accurate they are.BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
BEFORE
AFTER
TESTING INSTRUCTIONS
CI.
ADDITIONAL INFORMATION