-
Notifications
You must be signed in to change notification settings - Fork 68
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 for charts with side-by-side
grouping (Bar/Area plots)
#1883
Open
aestoltm
wants to merge
33
commits into
ubccr:xdmod11.0
Choose a base branch
from
aestoltm:bar_chart_fix
base: xdmod11.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
7662078
Fix offset group for chart with data from two different realms
aestoltm 02eb17b
Exclude pie chart fix from this pr
aestoltm 024d917
Fix extra space
aestoltm 9c3d00d
Fix trend line legend ordering
aestoltm e599bdf
Adjustments to trendline legend position logic
aestoltm 3b8837a
Fix legend rankings
aestoltm fc0a4f7
Account for the area plot workaround
aestoltm 6b519ea
Fix whitespace error
aestoltm 9db6bb1
Update image hashes
aestoltm 246d023
Fixed group stacking bug when mixing multiple data sources from the s…
aestoltm b26dc67
update branch with xdmod11.0
aestoltm 41bddf2
Update regression tests after merge conflict
aestoltm 2825714
Merge branch 'main' into bar_chart_fix
aestoltm f75a9ae
Update legend rank starting value to make rank calculating easier
aestoltm 5732c8d
Update rank calculation to simply be division by 2. Also fix syntax e…
aestoltm 9ac5902
Use metadata flag to determine if primary or supplemental trace inste…
aestoltm 70d36fd
Refactor metadata to reduce code duplication
aestoltm c32e6c3
Linter fix
aestoltm f8cc1e2
Added back check for if a series is a trendline supplemental series
aestoltm d840860
Merge branch 'xdmod11.0' into bar_chart_fix
jpwhite4 c209f35
Add CHANGELOG/release notes about PR
aestoltm f8feb74
Merge branch 'xdmod11.0' into bar_chart_fix
aestoltm 7c249e9
Linter fix
aestoltm 27e99e4
Merge branch 'xdmod11.0' into bar_chart_fix
aestoltm 697a0c3
remove release note information
aestoltm ca3e2f4
Merge branch 'xdmod11.0' into bar_chart_fix
aestoltm 42a4433
Realized was calculating the legend rank off by 1. Most likely didn't…
aestoltm b09a315
Merge branch 'xdmod11.0' into bar_chart_fix
aestoltm 1c65d3f
Minor refactor to improve clarity
aestoltm a9f8ea3
Also refactor for export code
aestoltm a4fc2fc
Rename variable to be more precise about what it is
aestoltm 124f845
Fix syntax error
aestoltm 527afb2
Merge branch 'xdmod11.0' into bar_chart_fix
aestoltm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Please change this if to explicitly check for a column bar chart (rather than not == group which will match scatter plots and pie charts too).
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.
This should be addressed.
For the trendline code that contained the ternaries, it seems that having the valid check was unnecessary. Nothing breaks when the log scale and std error bars are enabled with the trendline series. I need to start working on a few refactor PRs for Plotly because I saw a few cases where we can refactor
barmode
(only need for bar charts shouldn't be default on every chart) and allowing log scale with error bars (haven't found any reason why it shouldn't be allowed, I can look back on the git blame and try to find a reason)