You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/users/prev_whats_new/whats_new_3.6.0.rst
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ The relative width and height of columns and rows in `~.Figure.subplots` and
21
21
*width_ratios* keyword arguments to the methods:
22
22
23
23
.. plot::
24
-
:alt: A figure with three subplots in three rows and one column. The height of the subplot in the first row is three times than the subplots in the 2nd and 3rd row
24
+
:alt: A figure with three subplots in three rows and one column. The height of the subplot in the first row is three times than the subplots in the 2nd and 3rd row.
25
25
:include-source: true
26
26
27
27
fig = plt.figure()
@@ -70,7 +70,7 @@ Using the ``layout='compressed'`` layout reduces the space between the Axes,
70
70
and adds the extra space to the outer margins:
71
71
72
72
.. plot::
73
-
:alt: Four identical two by two heatmaps, each cell a different color: purple, blue, yellow, green going clockwise from upper left corner. The four heatmaps are laid out in a two by two grid with minimum white space between the heatmaps
73
+
:alt: Four identical two by two heatmaps, each cell a different color: purple, blue, yellow, green going clockwise from upper left corner. The four heatmaps are laid out in a two by two grid with minimum white space between the heatmaps.
74
74
75
75
fig, axs = plt.subplots(2, 2, figsize=(5, 3),
76
76
sharex=True, sharey=True, layout='compressed')
@@ -98,7 +98,7 @@ with the previous layout engine.
98
98
may be returned.
99
99
100
100
.. plot::
101
-
:alt: Plot of a straight line y=x, with a small inset axes in the lower right corner that shows a circle with radial grid lines and a line plotted in polar coordinates
101
+
:alt: Plot of a straight line y=x, with a small inset axes in the lower right corner that shows a circle with radial grid lines and a line plotted in polar coordinates.
102
102
:include-source: true
103
103
104
104
fig, ax = plt.subplots()
@@ -148,8 +148,9 @@ Striped lines (experimental)
148
148
149
149
The new *gapcolor* parameter to `~.Axes.plot` enables the creation of striped
150
150
lines.
151
+
151
152
.. plot::
152
-
:alt: Plot of x**3 where the line is an orange-blue striped line, achieved using the keywords`linestyle='--', color='orange', gapcolor='blue'
153
+
:alt: Plot of x**3 where the line is an orange-blue striped line, achieved using the keywords`linestyle='--', color='orange', gapcolor='blue'
0 commit comments