We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac52254 commit dd7f51bCopy full SHA for dd7f51b
doc/_embedded_plots/figure_subplots_adjust.py
@@ -1,5 +1,6 @@
1
import matplotlib.pyplot as plt
2
3
+
4
def arrow(p1, p2, **props):
5
overlay.annotate(
6
"", p1, p2, xycoords='figure fraction',
@@ -17,14 +18,14 @@ def arrow(p1, p2, **props):
17
18
19
arrow((0, 0.75), (0.1, 0.75)) # left
20
arrow((0.435, 0.25), (0.565, 0.25)) # wspace
-arrow((0.1, 0.8), (1, 0.8)) # right
21
+arrow((0, 0.8), (0.9, 0.8)) # right
22
fig.text(0.05, 0.7, "left", ha="center")
23
fig.text(0.5, 0.3, "wspace", ha="center")
-fig.text(0.95, 0.83, "right", ha="center")
24
+fig.text(0.05, 0.83, "right", ha="center")
25
26
arrow((0.75, 0), (0.75, 0.1)) # bottom
27
arrow((0.25, 0.435), (0.25, 0.565)) # hspace
-arrow((0.80, 0.1), (0.8, 1)) # top
28
+arrow((0.80, 0), (0.8, 0.9)) # top
29
fig.text(0.65, 0.05, "bottom", va="center")
30
fig.text(0.28, 0.5, "hspace", va="center")
-fig.text(0.75, 0.95, "top", va="center")
31
+fig.text(0.82, 0.05, "top", va="center")
0 commit comments