-
-
Notifications
You must be signed in to change notification settings - Fork 8.5k
Offset and scaling factors in axis format #4376 #6086
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
137c7aa
ab1b3a2
4079e1a
bfc7389
09f800c
02f0a11
5368336
fee8ab9
681820f
66061ad
53ed618
4c86635
9ce9d3c
8d9d121
2737c5c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,7 +13,7 @@ | |
| # set this to True. It will download and build a specific version of | ||
| # FreeType, and then use that to build the ft2font extension. This | ||
| # ensures that test images are exactly reproducible. | ||
| #local_freetype = False | ||
| local_freetype = True | ||
|
Member
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. Please do not commit this change. The same effect can be achived by in the enviroment you are building in.
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. Thanks for taking the time to review the changes this thoroughly! I am learning a lot from it. Done (this change was not intended) |
||
|
|
||
| [status] | ||
| # To suppress display of the dependencies and their versions | ||
|
|
||
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 looks like it no longer uses the rcparam?
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.
It still honors the rcparam, see line 671 and 672. I (probably) should have been clearer about this in the commit message.
_useoffsetandget_useOffset()now indicates if the offset has been set by either the user or the algorithm choosing a good offset; It no longer return the same value as the rcParam.axes.formatter.useoffset = Falsenow disables the automatic algorithm. The user can still manually set an offsetaxes.formatter.useoffset = Trueallows the automatic algorithm to set an offset. The user can still override this.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.
The practice in the rest of the library is that the value of the rcparams are stashed when the artists are created. In part this is so that the rcparams context manager and in part so that we can be sure of when the rcprams are consulted (many things are deffered to draw time).