File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 78
78
fig , ax = plt .subplots (ncols = 3 , figsize = (16 , 10 ))
79
79
ax [0 ].imshow (zz )
80
80
ax [0 ].margins (0.2 )
81
- ax [0 ].set_title ("use_sticky_edges unchanged \n margins(0.2)" )
81
+ ax [0 ].set_title ("default use_sticky_edges \n margins(0.2)" )
82
82
ax [1 ].imshow (zz )
83
83
ax [1 ].margins (0.2 )
84
84
ax [1 ].use_sticky_edges = False
85
85
ax [1 ].set_title ("use_sticky_edges=False\n margins(0.2)" )
86
86
ax [2 ].imshow (zz )
87
87
ax [2 ].margins (- 0.2 )
88
- ax [2 ].set_title ("use_sticky_edges unchanged \n margins(-0.2)" )
88
+ ax [2 ].set_title ("default use_sticky_edges \n margins(-0.2)" )
89
89
90
90
###############################################################################
91
- # We can see that setting ``use_sticky_edges`` to *False* renders the image with
92
- # requested margins.
91
+ # We can see that setting ``use_sticky_edges`` to *False* renders the image
92
+ # with requested margins.
93
93
#
94
94
# While sticky edges don't increase the axis limits through extra margins,
95
95
# negative margins are still taken into accout. This can be seen in
You can’t perform that action at this time.
0 commit comments