-
Notifications
You must be signed in to change notification settings - Fork 14
changes some plot styles for the polar view #1751
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
Conversation
|
Hello @saransh13! Thanks for updating this PR. We checked the lines you've touched for PEP 8 issues, and found: There are currently no PEP 8 issues detected in this Pull Request. Cheers! 🍻 Comment last updated at 2024-11-24 01:55:10 UTC |
This makes ticks at Q values of 1, 2, 3, etc. Signed-off-by: Patrick Avery <[email protected]>
2e2ddef to
c4e98a5
Compare
This might need to be an editable option in the future. Signed-off-by: Patrick Avery <[email protected]>
hexrdgui/image_canvas.py
Outdated
| self.axis.tick_params( | ||
| bottom=True, top=True, which='major', length=8) | ||
| self.axis.tick_params( | ||
| bottom=True, top=True, which='minor', length=2) |
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.
I believe these don't have have an effect (these appear to be set by the previous calls to tick_params, and I don't see a difference in the plots if I remove these lines).
Do you know if these lines are necessary?
This way, we can still increase their font sizes if the global font size increases. Signed-off-by: Patrick Avery <[email protected]>
psavery
left a comment
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.
@saransh13 Try out the latest changes. If it looks good to you, then this is ready to be merged!

Example polar view plot below. In the long term, we should make the plot styles editable in the GUI, but for now style this seems a little better to me.