Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Style changes omnibus PR #5774

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

Merged
merged 33 commits into from
Feb 8, 2016
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
14281fd
Change default image interpolation to nearest
jenshnielsen Jul 10, 2015
76c70be
Change docstring to reflect new default interpolation
jenshnielsen Jul 10, 2015
bba003f
fix typo
jenshnielsen Nov 6, 2015
86b7a59
fix #4854: set default numpoints of legend entries to 1
gauteh Sep 24, 2015
d2f6bea
Fix #5419: Set default figure background to white
mdboom Dec 14, 2015
87ba8b0
Don't plot errorbar caps by default
mdboom Dec 14, 2015
38d4e31
Grey solid tick lines
mdboom Nov 8, 2015
5317d35
API: use 'best' for default legend location
tacaswell Nov 9, 2015
5695389
Outward ticks (Fix #4502)
mdboom Nov 16, 2015
3e7471a
Use "new" blue by default
mdboom Nov 16, 2015
28c632f
Change default color map (Fix #875)
mdboom Nov 16, 2015
4472125
Use Vega collection10 colors instead
mdboom Nov 17, 2015
f45e9bc
Rounded corners on legend box
mdboom Dec 14, 2015
4513182
Fix #4700: Use overlay by default
mdboom Nov 17, 2015
09b29d8
Simplify examples to use defaults more often
mdboom Nov 25, 2015
3abcb95
Add what's new
mdboom Dec 14, 2015
f2ac1bb
Document Xtick.minor.visible
mdboom Dec 14, 2015
318a044
Use image.resample == True
mdboom Dec 31, 2015
417db2f
Update test images
mdboom Dec 31, 2015
82558ee
Revert some changes caught by @QuLogic in review
mdboom Jan 21, 2016
c5864ce
Fix typo
mdboom Jan 22, 2016
30b4341
Update test images
mdboom Dec 31, 2015
0f4e3a6
Improve what's new
mdboom Jan 25, 2016
c44bd3d
Fix formatting
mdboom Jan 25, 2016
fa4c56e
Change figure background for real
mdboom Jan 25, 2016
caa711b
More detail in what's new
mdboom Jan 26, 2016
c2580a5
Remove info about Blues colormap -- we're punting
mdboom Jan 26, 2016
f0e98fa
USe tight_layout rather than hardcoded space
mdboom Jan 26, 2016
7718b15
Don't use jet
mdboom Jan 26, 2016
0aae0f0
Don't hardcode linewidth
mdboom Jan 26, 2016
f21d5cf
Fix comment
mdboom Jan 26, 2016
31f28bc
Fix comment
mdboom Jan 26, 2016
b394ae7
Add missing test file
mdboom Jan 27, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
More detail in what's new
  • Loading branch information
mdboom committed Jan 26, 2016
commit caa711bb2d326ba4b9d9d4bea2b6549c5b4abda0
13 changes: 11 additions & 2 deletions 13 doc/users/whats_new/style_changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Colors
``````

- The default figure background color has changed from grey to white.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see this change in the template, but not in rcsetup.py; is it fully implemented? (I assume it's figure.facecolor).

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch. It should be in rcsetup.py as well. Done.

Use the rcParam ``figure.facecolor`` to control this.

- The default cycle of colors to draw lines, markers and other content
has been changed. It is based on the `Vega category10 palette
Expand Down Expand Up @@ -44,12 +45,20 @@ Plot layout
- The limits are scaled to exactly the dimensions of the data, plus 5%
padding. The old behavior was to scale to the nearest "round"
numbers. To use the old behavior, set the ``rcParam``
``axes.autolimit_mode`` to ``round_numbers``.
``axes.autolimit_mode`` to ``round_numbers``. To control the
margins on particular side individually, pass any of the following
to any artist or plotting function:

- ``top_margin=False``
- ``bottom_margin=False``
- ``left_margin=False``
- ``right_margin=False``

- Ticks now point outward by default. To have ticks pointing inward,
use the ``rcParams`` ``xtick.direction`` and ``ytick.direction``.

- By default, caps on the ends of errorbars are not present.
- By default, caps on the ends of errorbars are not present. Use the
rcParam ``errorbar.capsize`` to control this.

Images
``````
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.