File tree 3 files changed +8
-17
lines changed
3 files changed +8
-17
lines changed Original file line number Diff line number Diff line change @@ -75,16 +75,6 @@ directive - ``close-figs`` - that closes any previous figure windows before
75
75
creating the plots. This can help avoid some surprising duplicates of plots
76
76
when using ``plot_directive ``.
77
77
78
- Configuration (rcParams)
79
- ------------------------
80
-
81
- ``image.composite_image `` added
82
- ```````````````````````````````
83
- Controls whether vector graphics backends (i.e. PDF, PS, and SVG) combine
84
- multiple images on a set of axes into a single composite image. Saving each
85
- image individually can be useful if you generate vector graphics files in
86
- matplotlib and then edit the files further in Inkscape or other programs.
87
-
88
78
.. _whats-new-1-4 :
89
79
90
80
new in matplotlib-1.4
Original file line number Diff line number Diff line change 1
1
Added "legend.framealpha" key to rcParams
2
2
`````````````````````````````````````````
3
-
4
3
Added a key and the corresponding logic to control the default transparency of
5
4
legend frames. This feature was written into the docstring of axes.legend(),
6
5
but not yet implemented.
7
6
8
-
9
7
Added "figure.titlesize" and "figure.titleweight" keys to rcParams
10
8
``````````````````````````````````````````````````````````````````
11
-
12
9
Two new keys were added to rcParams to control the default font size and weight
13
10
used by the figure title (as emitted by ``pyplot.suptitle() ``).
14
11
15
-
16
-
17
12
Added "legend.facecolor" and "legend.edgecolor" keys to rcParams
18
13
````````````````````````````````````````````````````````````````
19
-
20
14
The new keys control colors (background and edge) of legend patches.
15
+
16
+ ``image.composite_image `` added to rcParams
17
+ ```````````````````````````````````````````
18
+ Controls whether vector graphics backends (i.e. PDF, PS, and SVG) combine
19
+ multiple images on a set of axes into a single composite image. Saving each
20
+ image individually can be useful if you generate vector graphics files in
21
+ matplotlib and then edit the files further in Inkscape or other programs.
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ class Figure(Artist):
249
249
250
250
*suppressComposite*
251
251
For multiple figure images, the figure will make composite
252
- images depending on the renderer option_combine_images
252
+ images depending on the renderer option_image_nocomposite
253
253
function. If suppressComposite is True|False, this will
254
254
override the renderer.
255
255
"""
You can’t perform that action at this time.
0 commit comments