8000 Improve whats new by WeatherGod · Pull Request #5079 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Improve whats new #5079

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 3 commits into from
Sep 15, 2015
Merged
Changes from 1 commit
Commits
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
Fix up the parameter table
  • Loading branch information
WeatherGod committed Sep 15, 2015
commit eb96eb30e72891ed2b80f8089c124ff182d83982
61 changes: 37 additions & 24 deletions doc/users/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -616,30 +616,43 @@ Configuration (rcParams)

Some parameters have been added, others have been improved.

========================= ==================================================
Parameter Description
========================= ==================================================
`{x,y}axis.labelpad` mplot3d now respects these parameters
`axes.labelpad` Default space between the axis and the label
`errorbar.capsize` Default length of end caps on error bars
`{x,y}tick.minor.visible` Default visibility of minor x/y ticks
`legend.framealpha` Default transparency of the legend frame box
`legend.facecolor` Default facecolor of legend frame box (or
``'inherit'`` from `axes.facecolor`)
`legend.edgecolor` Default edgecolor of legend frame box (or
``'inherit'`` from `axes.edgecolor`)
`figure.titlesize` Default font size for figure suptitles
`figure.titleweight` Default font weight for figure suptitles
`image.composite_image` Whether a vector graphics backend should composite
several images into a single image or not when
saving. Useful when needing to edit the files
further in Inkscape or other programs.
`markers.fillstyle` Default fillstyle of markers. Possible values are
``'full'`` (the default), ``'left'``, ``'right'``,
``'bottom'``, ``'top'`` and ``'none'``
`toolbar` Added ``'toolmanager'`` as a valid value, enabling
the experimental ``ToolManager`` feature.
========================= ===================================================
+-------------------------+--------------------------------------------------+
| Parameter | Description |
+=========================+==================================================+
|`{x,y}axis.labelpad` | mplot3d now respects these parameters |
+-------------------------+--------------------------------------------------+
|`axes.labelpad` | Default space between the axis and the label |
+-------------------------+--------------------------------------------------+
|`errorbar.capsize` | Default length of end caps on error bars |
+-------------------------+--------------------------------------------------+
|`{x,y}tick.minor.visible`| Default visibility of minor x/y ticks |
+-------------------------+--------------------------------------------------+
|`legend.framealpha` | Default transparency of the legend frame box |
+-------------------------+--------------------------------------------------+
|`legend.facecolor` | Default facecolor of legend frame box (or |
| | ``'inherit'`` from `axes.facecolor`) |
+-------------------------+--------------------------------------------------+
|`legend.edgecolor` | Default edgecolor of legend frame box (or |
| | ``'inherit'`` from `axes.edgecolor`) |
+-------------------------+--------------------------------------------------+
|`figure.titlesize` | Default font size for figure suptitles |
+-------------------------+--------------------------------------------------+
|`figure.titleweight` | Default font weight for figure suptitles |
+-------------------------+--------------------------------------------------+
|`image.composite_image` | Whether a vector graphics backend should |
| | composite several images into a single image or |
| | not when saving. Useful when needing to edit the |
| | files further in Inkscape or other programs. |
+-------------------------+--------------------------------------------------+
|`markers.fillstyle` | Default fillstyle of markers. Possible values |
| | are ``'full'`` (the default), ``'left'``, |
| | ``'right'``, ``'bottom'``, ``'top'`` and |
| | ``'none'`` |
+-------------------------+--------------------------------------------------+
|`toolbar` | Added ``'toolmanager'`` as a valid value, |
| | enabling the experimental ``ToolManager`` |
| | feature. |
+-------------------------+--------------------------------------------------+

Backends
--------
Expand Down
0