-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Pie colors fix & enhancements #2870
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -775,7 +775,7 @@ describe('annotations autorange', function() { | |
| }); | ||
| }) | ||
| .then(function() { | ||
| _assert('auto rng / big tx', [-0.22, 3.57], [0.84, 3.365]); | ||
| _assert('auto rng / big tx', [-0.22, 3.59], [0.84, 3.365]); | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Doesn't matter for CI, and has nothing to do with this PR, but this change makes this test pass on my Mac. |
||
| return Plotly.relayout(gd, 'annotations[0].text', 'a'); | ||
| }) | ||
| .then(function() { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1801,14 +1801,6 @@ function mockBarPlot(dataWithoutTraceType, layout) { | |
| supplyAllDefaults(gd); | ||
| Plots.doCalcdata(gd); | ||
|
|
||
| var plotinfo = { | ||
| xaxis: gd._fullLayout.xaxis, | ||
| yaxis: gd._fullLayout.yaxis | ||
| }; | ||
|
|
||
| // call Bar.crossTraceCalc | ||
| Bar.crossTraceCalc(gd, plotinfo); | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Yep, I noticed that last week. This commit dfada6a helps, but there are more cases where |
||
|
|
||
| return gd; | ||
| } | ||
|
|
||
|
|
||
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.
Hmm, I guess we don't need to export
doCrossTraceCalcanymore since it's only used here...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.
stopped exporting -> 0bf82c8