-
Notifications
You must be signed in to change notification settings - Fork 14.6k
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
[bugfix] making secondary_metric optional #5682
Conversation
I noticed that `secondary_metric` was required in the chart that users it, namely sunburst, parallel coordinates, and world_map. I set the control as allowing null, and found related bugs in the process: * parallel coordinates did not have support for the new MetricControl * added color scheme support for parallel coordinates * added option to set row_limit on these viz types * sunburst to support numeric columns (number would show as blank)
Codecov Report
@@ Coverage Diff @@
## master #5682 +/- ##
=========================================
- Coverage 63.51% 63.5% -0.01%
=========================================
Files 360 360
Lines 22904 22904
Branches 2551 2555 +4
=========================================
- Hits 14548 14546 -2
- Misses 8341 8343 +2
Partials 15 15
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
I noticed that `secondary_metric` was required in the chart that users it, namely sunburst, parallel coordinates, and world_map. I set the control as allowing null, and found related bugs in the process: * parallel coordinates did not have support for the new MetricControl * added color scheme support for parallel coordinates * added option to set row_limit on these viz types * sunburst to support numeric columns (number would show as blank) (cherry picked from commit 71e0c07)
I noticed that `secondary_metric` was required in the chart that users it, namely sunburst, parallel coordinates, and world_map. I set the control as allowing null, and found related bugs in the process: * parallel coordinates did not have support for the new MetricControl * added color scheme support for parallel coordinates * added option to set row_limit on these viz types * sunburst to support numeric columns (number would show as blank)
I noticed that
secondary_metric
was required in the chart that usesit, namely sunburst, parallel coordinates, and world_map.
I set the control as allowing null, and found related bugs in the
process: